yosys/manual/PRESENTATION_ExSyn/opt_02.v
2014-02-02 22:26:26 +01:00

3 lines
76 B
Coq

module test(input A, output Y, Z);
assign Y = A == A, Z = A != A;
endmodule