index
:
iCE40/yosys
master
[no description]
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
lut
/
map_mux.v
blob: ccecf30230f94c658fb5c017dcd7ac5d7e5b3d0d (
plain
)
1
2
3
4
5
module
top
(...);
input
a
,
b
,
s
;
output
y
;
assign
y
=
s
?
a:
b
;
endmodule