Fixed incorrect port name in cells_map.v

This commit is contained in:
Andrew Zonenberg 2016-03-31 22:51:22 -07:00
parent c04a3d2763
commit 7498ff8041
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ module GP_DFFS(input D, CLK, nSET, output reg Q);
.SRMODE(1'b1),
) _TECHMAP_REPLACE_ (
.D(D),
.CLK(C),
.CLK(CLK),
.nSR(nSET),
.Q(Q)
);
@ -18,7 +18,7 @@ module GP_DFFR(input D, CLK, nRST, output reg Q);
.SRMODE(1'b0),
) _TECHMAP_REPLACE_ (
.D(D),
.CLK(C),
.CLK(CLK),
.nSR(nRST),
.Q(Q)
);