From: Eddie Hung Date: Sun, 16 Jun 2019 02:36:37 +0000 (-0700) Subject: Fix spacing X-Git-Tag: working-ls180~881^2^2~308 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ec57b46c2f37ca9eafca8e0e919d676c74f99d8;p=yosys.git Fix spacing --- diff --git a/techlibs/xilinx/ff_map.v b/techlibs/xilinx/ff_map.v index bfd4c6998..bd36c78fc 100644 --- a/techlibs/xilinx/ff_map.v +++ b/techlibs/xilinx/ff_map.v @@ -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