HDLBits练习(十二)Circuits_Sequential Logic_Counters
Count15要求:构建一个从 0 到 15(含)计数的 4 位二进制计数器,周期为 16。复位输入是同步的,应将计数器复位为 0。弄清楚计数器的清零和计数条件就很容易。module top_module ( input clk, input reset, // Synchronous active-high reset output [3:0] q); reg [3:0] q_reg; always@(posedge clk)