2021-03-04 18:59:33 +01:00

3 lines
82 B
Verilog

module xor_gate(input _a, input _b, output _y0);
assign _y0 = _a ^ _b;
endmodule