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