Sim/circuit1

From HDLBits

bugs_casePrevious

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

Module Declaration

module top_module (
    input a,
    input b,
    output q );
//

    assign q = 0; // Fix me

Write your solution here

Upload a source file...