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