Skip to content

Commit 48ae6c6

Browse files
authored
Merge pull request #1859 from The-OpenROAD-Project-staging/fix-cells.v
Fix bug in module DFF_X2 in cells.v (ng45)
2 parents 5d11692 + d0ef7dc commit 48ae6c6

File tree

1 file changed

+1
-1
lines changed
  • flow/platforms/nangate45/work_around_yosys

1 file changed

+1
-1
lines changed

flow/platforms/nangate45/work_around_yosys/cells.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ module DFF_X2 (CK, D, Q, QN);
343343
output QN;
344344
always @(posedge CK) begin
345345
Q <= D;
346-
Q <= ~D;
346+
QN <= ~D;
347347
end
348348
endmodule // DFF_X2
349349

0 commit comments

Comments
 (0)