nand2/01_Boolean_Logic/Xor.v

16 lines
158 B
Coq
Raw Normal View History

2023-01-11 10:13:09 +00:00
/**
* Exclusive-or gate:
* out = not (a == b)
*/
`default_nettype none
module Xor(
input a,
input b,
output out
);
// Put your code here:
endmodule