diff options
author | David Shah <dave@ds0.me> | 2019-10-20 10:30:41 +0100 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2019-10-20 10:30:41 +0100 |
commit | fa989e59e5a37d804d8a82050e022b8f4b7070d8 (patch) | |
tree | 20569089b31c329256becf205b8e0be9bd361de5 | |
parent | f2aa2d1bb470235689959748aa2d4f82a1c0d0b5 (diff) | |
download | yosys-fa989e59e5a37d804d8a82050e022b8f4b7070d8.tar.gz yosys-fa989e59e5a37d804d8a82050e022b8f4b7070d8.tar.bz2 yosys-fa989e59e5a37d804d8a82050e022b8f4b7070d8.zip |
ecp5: Pass -nomfs to abc9
Fixes #1459
Signed-off-by: David Shah <dave@ds0.me>
-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 a79dee31f..800a8ce22 100644 --- a/techlibs/ecp5/synth_ecp5.cc +++ b/techlibs/ecp5/synth_ecp5.cc @@ -314,9 +314,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"); + run("abc9 -lut +/ecp5/abc9_5g_nowide.lut -box +/ecp5/abc9_5g.box -W 200 -nomfs"); else - run("abc9 -lut +/ecp5/abc9_5g.lut -box +/ecp5/abc9_5g.box -W 200"); + run("abc9 -lut +/ecp5/abc9_5g.lut -box +/ecp5/abc9_5g.box -W 200 -nomfs"); run("techmap -map +/ecp5/abc9_unmap.v"); } else { if (nowidelut) |