ecp5: fix rebase mistake

This commit is contained in:
Eddie Hung 2020-05-13 14:12:06 -07:00
parent 8d34aee3d5
commit 39759d5f0e
1 changed files with 3 additions and 3 deletions

View File

@ -348,10 +348,10 @@ struct SynthEcp5Pass : public ScriptPass
else
abc9_opts += stringf(" -W %s", RTLIL::constpad.at(k).c_str());
if (nowidelut)
abc9_args += " -maxlut 4";
abc9_opts += " -maxlut 4";
if (dff)
abc9_args += " -dff";
run("abc9" + abc9_args);
abc9_opts += " -dff";
run("abc9" + abc9_opts);
run("techmap -map +/ecp5/abc9_unmap.v");
} else {
std::string abc_args = " -dress";