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