nand2/01_Boolean_Logic/Xor.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

16 lines
158 B
Verilog

/**
* Exclusive-or gate:
* out = not (a == b)
*/
`default_nettype none
module Xor(
input a,
input b,
output out
);
// Put your code here:
endmodule