Circuit B can be described by the following simulation waveform:
Implement this circuit.
module top_module ( input x, input y, output z );//001 100 010 111assign z=(x==y);
endmodule
Circuit B can be described by the following simulation waveform:
Implement this circuit.
module top_module ( input x, input y, output z );//001 100 010 111assign z=(x==y);
endmodule