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