摘要: module top_module ( input clk, input resetn, // active-low synchronous reset input x, input y, output f, output g ); parameter A = 0, B = 1, C = 2, D 阅读全文
posted @ 2023-09-12 16:28 deweii 阅读(29) 评论(0) 推荐(0)
摘要: module top_module ( input clk, input reset, // Synchronous reset input s, input w, output reg z ); reg state, nstate; reg [3:0] sw, nsw; always @(*) c 阅读全文
posted @ 2023-09-12 15:06 deweii 阅读(36) 评论(0) 推荐(0)
摘要: 1 module review2015_fancytimer ( 2 input clk, 3 input reset, // Synchronous reset 4 input data, 5 output [3:0] count, 6 output counting, 7 output done 阅读全文
posted @ 2023-09-07 17:26 deweii 阅读(45) 评论(0) 推荐(0)
摘要: 1 module Lemmings4 ( 2 input clk, 3 input areset, // Freshly brainwashed Lemmings walk left. 4 input bump_left, 5 input bump_right, 6 input ground, 7 阅读全文
posted @ 2023-08-29 17:15 deweii 阅读(71) 评论(0) 推荐(0)
摘要: 1 module Exams_ece241_2013_q4 ( 2 input clk, 3 input reset, 4 input [3:1] s, 5 output fr3, 6 output fr2, 7 output fr1, 8 output dfr 9 ); 10 11 paramet 阅读全文
posted @ 2023-08-29 14:43 deweii 阅读(23) 评论(0) 推荐(0)
摘要: 1 module Conwaylife ( 2 input clk, 3 input load, 4 input [255:0] data, 5 output reg [255:0] q 6 ); 7 8 reg [3:0] w, r, c; 9 10 always @(posedge clk) b 阅读全文
posted @ 2023-08-28 19:58 deweii 阅读(34) 评论(0) 推荐(0)
摘要: · 关于esp8266(esp01s_1m)无法写入问题 Platformio.ini里添加如下行 `upload_resetmethod = nodemcu` · 关于正常安装PlatformIO后一种莫名奇妙的无法打开的问题 ·· 确保一些正常的因素 包括 正常的等待 正常的环境(比如pytho 阅读全文
posted @ 2021-04-23 23:42 deweii 阅读(71) 评论(0) 推荐(0)