diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-05-13 14:12:06 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-05-14 10:33:57 -0700 |
commit | 39759d5f0ec9bfc0db3dd718cb035596da7f9668 (patch) | |
tree | cef0a7eef0e237eae32f031b1e8d2bc0e7f23be4 /techlibs | |
parent | 8d34aee3d5addfc796ca7057d38e77628c6a77b4 (diff) | |
download | yosys-39759d5f0ec9bfc0db3dd718cb035596da7f9668.tar.gz yosys-39759d5f0ec9bfc0db3dd718cb035596da7f9668.tar.bz2 yosys-39759d5f0ec9bfc0db3dd718cb035596da7f9668.zip |
ecp5: fix rebase mistake
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/ecp5/synth_ecp5.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/techlibs/ecp5/synth_ecp5.cc b/techlibs/ecp5/synth_ecp5.cc index 0e49ef01a..c13020cc1 100644 --- a/techlibs/ecp5/synth_ecp5.cc +++ b/techlibs/ecp5/synth_ecp5.cc @@ -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"; |