FPGA/HDLBits

Sim/circuit4

장영현 2023. 6. 20. 20:00
728x90

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

b나 c가 1일때 q가 high인 상태

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

    assign q = b | c; // Fix me

endmodule