aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--techlibs/greenpak4/cells_map.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/greenpak4/cells_map.v b/techlibs/greenpak4/cells_map.v
index e24d24973..ce517d94b 100644
--- a/techlibs/greenpak4/cells_map.v
+++ b/techlibs/greenpak4/cells_map.v
@@ -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)
);