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