mirror of https://github.com/YosysHQ/yosys.git
ecp5: fix rebase mistake
This commit is contained in:
parent
8d34aee3d5
commit
39759d5f0e
|
@ -348,10 +348,10 @@ struct SynthEcp5Pass : public ScriptPass
|
||||||
else
|
else
|
||||||
abc9_opts += stringf(" -W %s", RTLIL::constpad.at(k).c_str());
|
abc9_opts += stringf(" -W %s", RTLIL::constpad.at(k).c_str());
|
||||||
if (nowidelut)
|
if (nowidelut)
|
||||||
abc9_args += " -maxlut 4";
|
abc9_opts += " -maxlut 4";
|
||||||
if (dff)
|
if (dff)
|
||||||
abc9_args += " -dff";
|
abc9_opts += " -dff";
|
||||||
run("abc9" + abc9_args);
|
run("abc9" + abc9_opts);
|
||||||
run("techmap -map +/ecp5/abc9_unmap.v");
|
run("techmap -map +/ecp5/abc9_unmap.v");
|
||||||
} else {
|
} else {
|
||||||
std::string abc_args = " -dress";
|
std::string abc_args = " -dress";
|
||||||
|
|
Loading…
Reference in New Issue