aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/gatemate/inv_map.v
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/gatemate/inv_map.v')
-rw-r--r--techlibs/gatemate/inv_map.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/techlibs/gatemate/inv_map.v b/techlibs/gatemate/inv_map.v
new file mode 100644
index 000000000..8a5051747
--- /dev/null
+++ b/techlibs/gatemate/inv_map.v
@@ -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