diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-07-10 22:54:39 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-07-10 22:54:39 -0700 |
commit | d357431df175719ed7653d2e3724473aece36b78 (patch) | |
tree | 82240b783c62a62d922e6e1f26985e6d6dc84ca6 /techlibs | |
parent | f984e0cb345c7cec85eb9b90a13faacffa2e3fa2 (diff) | |
download | yosys-d357431df175719ed7653d2e3724473aece36b78.tar.gz yosys-d357431df175719ed7653d2e3724473aece36b78.tar.bz2 yosys-d357431df175719ed7653d2e3724473aece36b78.zip |
Restore from master
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/xilinx/ff_map.v | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/techlibs/xilinx/ff_map.v b/techlibs/xilinx/ff_map.v index b12b0ed7d..13beaa6ae 100644 --- a/techlibs/xilinx/ff_map.v +++ b/techlibs/xilinx/ff_map.v @@ -24,6 +24,7 @@ module \$_DFF_N_ (input D, C, output Q); FDRE_1 #(.INIT(|0)) _TECHMAP_REPLACE_ (.D(D), .Q(Q), .C(C), .CE(1'b1), .R(1'b0)); endmodule module \$_DFF_P_ (input D, C, output Q); FDRE #(.INIT(|0)) _TECHMAP_REPLACE_ (.D(D), .Q(Q), .C(C), .CE(1'b1), .R(1'b0)); endmodule + module \$_DFFE_NP_ (input D, C, E, output Q); FDRE_1 #(.INIT(|0)) _TECHMAP_REPLACE_ (.D(D), .Q(Q), .C(C), .CE(E), .R(1'b0)); endmodule module \$_DFFE_PP_ (input D, C, E, output Q); FDRE #(.INIT(|0)) _TECHMAP_REPLACE_ (.D(D), .Q(Q), .C(C), .CE(E), .R(1'b0)); endmodule |