Another gate (Exams/m2014 q4f)

2023. 6. 12. 10:10FPGA/HDLBits

728x90

Problem Statement

Implement the following circuit:

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

'FPGA > HDLBits' 카테고리의 다른 글

More logic gates (Gates)  (0) 2023.06.12
Two gates (Exams/m2014 q4g)  (0) 2023.06.12
NOR (Exams/m2014 q4e)  (0) 2023.06.12
GND (Exams/m2014 q4i)  (0) 2023.06.12
Wire (Exams/m2014 q4h)  (0) 2023.06.12