3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 09:05:32 +00:00
This commit is contained in:
Eddie Hung 2020-01-11 17:28:24 -08:00
parent 7fa1b61aed
commit 295e241c07
2 changed files with 1 additions and 3 deletions

View file

@ -182,12 +182,10 @@ struct Abc9Pass : public ScriptPass
run("abc9_ops -break_scc -prep_holes" + std::string(dff_mode ? " -dff" : ""), "(option for -dff)");
run("select -set abc9_holes A:abc9_holes");
run("flatten -wb @abc9_holes");
run("dump @abc9_holes");
run("techmap @abc9_holes");
if (dff_mode || help_mode)
run("abc9_ops -prep_dff", "(only if -dff)");
run("opt -purge @abc9_holes");
run("dump @abc9_holes");
run("aigmap");
run("wbflip @abc9_holes");
}