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