diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:58:45 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:58:45 -0800 |
commit | 222e5e58ad1ae8845797a2afb63cdcb8c2396401 (patch) | |
tree | 818cbc18dc8345305da56758fbca979faeaac0c4 | |
parent | c28bea0382c07ea63709c33be4318d5012b9d281 (diff) | |
download | yosys-222e5e58ad1ae8845797a2afb63cdcb8c2396401.tar.gz yosys-222e5e58ad1ae8845797a2afb63cdcb8c2396401.tar.bz2 yosys-222e5e58ad1ae8845797a2afb63cdcb8c2396401.zip |
Cleanup
-rw-r--r-- | passes/techmap/abc9.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index a7e748ce7..8e17460e1 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -190,11 +190,10 @@ struct Abc9Pass : public ScriptPass run("flatten -wb @abc9_holes"); run("techmap @abc9_holes"); run("aigmap @abc9_holes"); - run("select -list @abc9_holes"); if (dff_mode) run("abc9_ops -prep_dff"); run("opt -purge @abc9_holes"); - run("setattr -mod -set whitebox 1 @abc9_holes"); + run("wbflip @abc9_holes"); auto selected_modules = active_design->selected_modules(); active_design->selection_stack.emplace_back(false); |