Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
d8d2c08403370e87450f7152cb7fef601628c9c3
/
.
/
tests
/
6-big_xor
/
big_xor.v
blob: bc52513ddc80730d6c5372fa38a37ba36b8ee616 [
file
] [
log
] [
blame
]
module
top
(
input
[
6
:
0
]
in
,
output
out
);
assign
out
=
^
in
;
endmodule