Sim/circuit9

From HDLBits

This is a sequential circuit. Read the simulation waveforms to determine what the circuit does, then implement it.

2030405060708090100110120130140150160170180190200210clkaq4560123456014560 Inputs Outputs

Module Declaration

module top_module (
    input clk,
    input a,
    output [3:0] q );

Write your solution here

x
 
1
module top_module (
2
    input clk,
3
    input a,
4
    output [3:0] q );
5
6
endmodule
7
Upload a source file...