3
0
Fork 0
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:
whitequark 2018-12-05 04:50:38 +00:00
parent 12596b5003
commit 9ef078848a
10 changed files with 133 additions and 0 deletions

5
tests/lut/map_mux.v Normal file
View file

@ -0,0 +1,5 @@
module top(...);
input a, b, s;
output y;
assign y = s?a:b;
endmodule