mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Merge pull request #2077 from YosysHQ/eddie/abc9_dff_improve
abc9: -dff improvements
This commit is contained in:
commit
69850204c4
6 changed files with 143 additions and 55 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue