FPGA/HDLBits

Another gate (Exams/m2014 q4f)

장영현 2023. 6. 12. 10:10
728x90

Problem Statement

Implement the following circuit:

module top_module (
    input in1,
    input in2,
    output out);
    assign out = in1 & (!in2);
endmodule