Sim/circuit3

From HDLBits

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,
    input c,
    input d,
    output q );
//

    assign q = 0; // Fix me

Write your solution here

Upload a source file...