mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-15 23:35:28 +00:00
gatemate: Add LUT tree library script
Co-authored-by: Claire Xenia Wolf <claire@clairexen.net> Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
7c756c9959
commit
38a24ec5cc
6 changed files with 591 additions and 6 deletions
4
techlibs/gatemate/inv_map.v
Normal file
4
techlibs/gatemate/inv_map.v
Normal file
|
@ -0,0 +1,4 @@
|
|||
// Any inverters not folded into LUTs are mapped to a LUT of their own
|
||||
module \$__CC_NOT (input A, output Y);
|
||||
CC_LUT1 #(.INIT(2'b01)) _TECHMAP_REPLACE_ (.I0(A), .O(Y));
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue