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