aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/common
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-05-29 17:17:40 -0700
committerEddie Hung <eddie@fpgeh.com>2020-05-29 17:17:40 -0700
commitd3b53bc495a98dd9aa25c553e0f8237765d3ed7a (patch)
treec658ab896174590d38d9a37c2ddd04e9e5250fee /techlibs/common
parent9c6d216a063452fcf0061b593b8ac278a39ff194 (diff)
downloadyosys-d3b53bc495a98dd9aa25c553e0f8237765d3ed7a.tar.gz
yosys-d3b53bc495a98dd9aa25c553e0f8237765d3ed7a.tar.bz2
yosys-d3b53bc495a98dd9aa25c553e0f8237765d3ed7a.zip
abc9_ops: -reintegrate use SigMap to remove (* init *) from $_DFF_[NP]_
Diffstat (limited to 'techlibs/common')
-rw-r--r--techlibs/common/abc9_unmap.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/common/abc9_unmap.v b/techlibs/common/abc9_unmap.v
index bcbe91477..c39648c62 100644
--- a/techlibs/common/abc9_unmap.v
+++ b/techlibs/common/abc9_unmap.v
@@ -1,5 +1,5 @@
(* techmap_celltype = "$__DFF_N__$abc9_flop $__DFF_P__$abc9_flop" *)
-module $__DFF_x__$abc9_flop (input C, D, Q, output n1);
+module $__DFF_x__$abc9_flop (input C, D, (* init = 1'b0 *) input Q, output n1);
parameter _TECHMAP_CELLTYPE_ = "";
generate if (_TECHMAP_CELLTYPE_ == "$__DFF_N__$abc9_flop")
$_DFF_N_ _TECHMAP_REPLACE_ (.C(C), .D(D), .Q(Q));