diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-06-04 08:15:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 08:15:25 -0700 |
commit | 69850204c4e6d86436237ea022b55e5070f54610 (patch) | |
tree | 05f359789160c7aa6e06665697bc6a500ad66d8c /techlibs | |
parent | 5e8a9c61cd0ae2127fb1c33b8a4c9c798573cafc (diff) | |
parent | 08d9703ecba375ba5588cbbb9dbf0f86757f6bb5 (diff) | |
download | yosys-69850204c4e6d86436237ea022b55e5070f54610.tar.gz yosys-69850204c4e6d86436237ea022b55e5070f54610.tar.bz2 yosys-69850204c4e6d86436237ea022b55e5070f54610.zip |
Merge pull request #2077 from YosysHQ/eddie/abc9_dff_improve
abc9: -dff improvements
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/common/abc9_unmap.v | 2 |
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)); |