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