aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/gatemate/inv_map.v
blob: 8a505174790c329b42920596a8fbfb11c1c70f75 (plain)
1
2
3
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