aboutsummaryrefslogtreecommitdiffstats
path: root/generic/synth/cells_map.v
blob: a6027534815f7d8e6bdb005529db8233d3e883df (plain)
1
2
3
4
5
6
7
8
9
10
module \$lut (A, Y);
	parameter WIDTH = 0;
	parameter LUT = 0;
	input [WIDTH-1:0] A;
	output Y;

	LUT #(.K(`LUT_K), .INIT(LUT)) _TECHMAP_REPLACE_ (.I(A), .Q(Y));
endmodule

module  \$_DFF_P_ (input D, C, output Q); DFF  _TECHMAP_REPLACE_ (.D(D), .Q(Q), .CLK(C)); endmodule