Sign in
foss-fpga-tools
/
third_party
/
yosys
/
362f4f996d49cca4be240d5c96fba013dd56a8cb
/
.
/
tests
/
lut
/
map_and.v
blob: 68ae33fd6deeac155afa349086a7ec1e3ccd141b [
file
]
module
top
(...);
input a
,
b
;
output y
;
assign y
=
a
&
b
;
endmodule