Skip to content

Commit d0ef7dc

Browse files
committed
Fix bug in module DFF_X2 in cells.v (ng45)
Signed-off-by: Matt Liberty <[email protected]>
1 parent 5d11692 commit d0ef7dc

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)