This website requires JavaScript.
Explore
Help
Sign In
luke
/
yosys
Watch
1
Star
0
Fork
0
mirror of
https://github.com/YosysHQ/yosys.git
synced
2026-08-22 14:17:27 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
emil/segfault-command
yosys
/
tests
/
lut
/
map_mux.v
T
Add File
New File
Upload File
Apply Patch
Copy Permalink
6 lines
82 B
Verilog
Raw
Permalink
Normal View
History
Unescape
Escape
gate2lut: new techlib, for converting Yosys gates to FPGA LUTs.
2018-12-05 04:50:38 +00:00
module
top
(...);
input
a
,
b
,
s
;
output
y
;
assign
y
=
s
?
a:
b
;
endmodule
Reference in New Issue
Copy Permalink