Exams/m2014 q4g

From HDLBits

Nextgates

Implement the following circuit:

Module Declaration

module top_module (
    input in1,
    input in2,
    input in3,
    output out);

Write your solution here

x
 
1
module top_module (
2
    input in1,
3
    input in2,
4
    input in3,
5
    output out);
6
7
endmodule
8
Upload a source file...