mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 13:18:56 +00:00
gate2lut: new techlib, for converting Yosys gates to FPGA LUTs.
This commit is contained in:
parent
12596b5003
commit
9ef078848a
10 changed files with 133 additions and 0 deletions
5
tests/lut/map_mux.v
Normal file
5
tests/lut/map_mux.v
Normal file
|
@ -0,0 +1,5 @@
|
|||
module top(...);
|
||||
input a, b, s;
|
||||
output y;
|
||||
assign y = s?a:b;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue