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