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