Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
7d839b4225448dabac1f8fce2d7e1c7c20a4b543
/
.
/
icefuzz
/
tests
/
bitop.v
blob: b698cf9bc831a143ac9a680781bec4ee81550c50 [
file
]
module
top
(
input a
,
b
,
output y
);
assign y
=
a
&
b
;
endmodule