Skip to content

Commit 8c9f440

Browse files
authored
Merge pull request #12 from karthisrinivasan/main
leak adjust on latches
2 parents 84e332b + 2018d44 commit 8c9f440

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/cells.act

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ export defcell LATCH (bool? CLK, D; bool! Q)
397397
spec {
398398
hazard(_q)
399399
}
400-
prs {
400+
prs * {
401401
CLK => _clk-
402402

403403
[keeper=0] D<10> & CLK -> _q-
@@ -415,7 +415,7 @@ export defcell LATCH (bool? CLK, D; bool! Q)
415415
export defcell LATCHINV (bool? CLK, D, q; bool! _q)
416416
{
417417
bool _clk;
418-
prs {
418+
prs * {
419419
CLK => _clk-
420420

421421
[keeper=0] D<10> & CLK -> _q-

0 commit comments

Comments
 (0)