3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-05 19:00:26 +00:00
This commit is contained in:
Eddie Hung 2020-01-03 13:21:56 -08:00
parent e1f494ab1d
commit bb70915fb8
3 changed files with 48 additions and 81 deletions

View file

@ -195,7 +195,11 @@ struct Abc9Pass : public ScriptPass
if (dff_mode)
run("abc9_ops -prep_dff");
// run("opt -purge @abc9_holes");
// run("wbflip @abc9_holes");
run("abc9_ops -prep_holes");
run("select -set abc9_holes A:abc9_holes");
run("wbflip @abc9_holes");
auto selected_modules = active_design->selected_modules();
active_design->selection_stack.emplace_back(false);