diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-12 15:19:41 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-12 15:19:41 -0800 |
commit | f9aae90e7a9d238f5063d980e2b1e85a94cff4c7 (patch) | |
tree | 90cdb2422cf1194b6ab72997a82c54e5e0b4818c /techlibs/ecp5/synth_ecp5.cc | |
parent | f24de88f385a3eeaadd9b9c8c200a7c338f37448 (diff) | |
parent | 295e241c074ae275e832fdde9fae6fd897170ac8 (diff) | |
download | yosys-f9aae90e7a9d238f5063d980e2b1e85a94cff4c7.tar.gz yosys-f9aae90e7a9d238f5063d980e2b1e85a94cff4c7.tar.bz2 yosys-f9aae90e7a9d238f5063d980e2b1e85a94cff4c7.zip |
Merge remote-tracking branch 'origin/eddie/abc9_refactor' into eddie/abc9_required
Diffstat (limited to 'techlibs/ecp5/synth_ecp5.cc')
-rw-r--r-- | techlibs/ecp5/synth_ecp5.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/ecp5/synth_ecp5.cc b/techlibs/ecp5/synth_ecp5.cc index d616391b2..6583f43fd 100644 --- a/techlibs/ecp5/synth_ecp5.cc +++ b/techlibs/ecp5/synth_ecp5.cc @@ -323,9 +323,9 @@ struct SynthEcp5Pass : public ScriptPass if (abc9) { run("read_verilog -icells -lib +/ecp5/abc9_model.v"); if (nowidelut) - run("abc9 -lut +/ecp5/abc9_5g_nowide.lut -box +/ecp5/abc9_5g.box -W 200 -nomfs"); + run("abc9 -lut +/ecp5/abc9_5g_nowide.lut -box +/ecp5/abc9_5g.box -W 200"); else - run("abc9 -lut +/ecp5/abc9_5g.lut -box +/ecp5/abc9_5g.box -W 200 -nomfs"); + run("abc9 -lut +/ecp5/abc9_5g.lut -box +/ecp5/abc9_5g.box -W 200"); run("techmap -map +/ecp5/abc9_unmap.v"); } else { if (nowidelut) |