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