Sign in
foss-fpga-tools
/
third_party
/
yosys
/
d7051b90de19ba0faed0a4eff4af7c3bc92dd3fd
/
.
/
tests
/
lut
/
map_xor.v
blob: 708a05789a3363e98fdb271c9e160da35715cbca [
file
]
module
top
(...);
input a
,
b
;
output y
;
assign y
=
a
^
b
;
endmodule