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