yosys/manual/PRESENTATION_ExSyn/opt_02.v

4 lines
76 B
Verilog

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