FPGA/HDLBits
Two gates (Exams/m2014 q4g)
장영현
2023. 6. 12. 10:14
728x90
Problem Statement
Implement the following circuit:
module top_module (
input in1,
input in2,
input in3,
output out);
assign out = (!(in1 ^ in2)) ^ ^ in3;
endmodule