Fix spacing

This commit is contained in:
Eddie Hung 2019-06-15 19:36:37 -07:00
parent 0debea25a7
commit 9ec57b46c2
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ module \$_DFF_P_ (input D, C, output Q);
`ifndef _ABC
FDRE #(.INIT(|0)) _TECHMAP_REPLACE_ (.D(D), .Q(Q), .C(C), .CE(1'b1), .R(1'b0));
`else
wire Q_next;
wire Q_next;
\$__ABC_FDRE #(.INIT(|0)) _TECHMAP_REPLACE_ (.D(D), .Q(Q_next), .Q_past(Q), .C(C), .CE(1'b1), .R(1'b0));
\$__ABC_FF_ abc_dff (.D(Q_next), .Q(Q));
`endif