Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
9feee6fe73aa5195cb7e9a2bf9ab3c6a3ff0980d
/
.
/
SVIncCompil
/
Testcases
/
Yosys
/
lut
/
map_xor.v
blob: 61956a00fc5d18edf081a4b97adfa88163e4b643 [
file
] [
log
] [
blame
]
module
top
();
input a
,
b
;
output y
;
assign y
=
a
^
b
;
endmodule