Skip to content

Commit 5375c02

Browse files
committed
ihp-sg13g2: Insert missing neg polarity latch rule
Signed-off-by: Martin Povišer <[email protected]>
1 parent 8a29e7e commit 5375c02

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

flow/platforms/ihp-sg13g2/cells_latch.v

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,11 @@ module $_DLATCH_P_(input E, input D, output Q);
66
);
77
endmodule
88

9+
module $_DLATCH_N_(input E, input D, output Q);
10+
sg13g2_dllrq_1 _TECHMAP_REPLACE_ (
11+
.D(D),
12+
.GATE_N(E),
13+
.RESET_B(1'b1),
14+
.Q(Q)
15+
);
16+
endmodule

0 commit comments

Comments
 (0)