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