aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ecp5/synth_ecp5.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-10-20 10:30:41 +0100
committerDavid Shah <dave@ds0.me>2019-10-20 10:30:41 +0100
commitfa989e59e5a37d804d8a82050e022b8f4b7070d8 (patch)
tree20569089b31c329256becf205b8e0be9bd361de5 /techlibs/ecp5/synth_ecp5.cc
parentf2aa2d1bb470235689959748aa2d4f82a1c0d0b5 (diff)
downloadyosys-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>
Diffstat (limited to 'techlibs/ecp5/synth_ecp5.cc')
-rw-r--r--techlibs/ecp5/synth_ecp5.cc4
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)