mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-29 21:36:33 +00:00
abc: remove -lut/-luts
This commit is contained in:
parent
5fd39ff3e1
commit
3369cc525f
20 changed files with 35 additions and 118 deletions
|
|
@ -544,14 +544,14 @@ struct SynthLatticePass : public ScriptPass
|
|||
abc9_opts += " -dff";
|
||||
run("abc9" + abc9_opts);
|
||||
} else {
|
||||
std::string abc_args = " -dress";
|
||||
std::string abc_args = "";
|
||||
if (nowidelut)
|
||||
abc_args += " -lut 4";
|
||||
else
|
||||
abc_args += " -lut " + widelut_abc;
|
||||
if (dff)
|
||||
abc_args += " -dff";
|
||||
run("abc" + abc_args);
|
||||
run("abc9" + abc_args);
|
||||
}
|
||||
run("clean");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue