Two gates (Exams/m2014 q4g)

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

728x90

Problem Statement

Implement the following circuit:

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

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

7420  (0) 2023.06.12
More logic gates (Gates)  (0) 2023.06.12
Another gate (Exams/m2014 q4f)  (0) 2023.06.12
NOR (Exams/m2014 q4e)  (0) 2023.06.12
GND (Exams/m2014 q4i)  (0) 2023.06.12