aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-14 12:00:02 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-14 12:00:02 -0700
commit97d265637505a239e3d328a3ee7e26c6fd5d6744 (patch)
tree14e63b5bbae0dfe2ac47ff3e1b4a5a1d959e4be4 /techlibs
parent2e34859a6b9780d6dc2df28dabcab893b5f4ce4a (diff)
downloadyosys-97d265637505a239e3d328a3ee7e26c6fd5d6744.tar.gz
yosys-97d265637505a239e3d328a3ee7e26c6fd5d6744.tar.bz2
yosys-97d265637505a239e3d328a3ee7e26c6fd5d6744.zip
Resolve comments from @daveshah1
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/ice40/synth_ice40.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc
index a60829764..d8e9786c5 100644
--- a/techlibs/ice40/synth_ice40.cc
+++ b/techlibs/ice40/synth_ice40.cc
@@ -332,7 +332,7 @@ struct SynthIce40Pass : public ScriptPass
}
if (!noabc) {
if (abc == "abc9")
- run(abc + stringf(" -dress -lut +/ice40/abc_%s.lut -box +/ice40/abc_%s.box", device_opt.c_str(), device_opt.c_str()), "(skip if -noabc)");
+ run(abc + stringf(" -lut +/ice40/abc_%s.lut -box +/ice40/abc_%s.box", device_opt.c_str(), device_opt.c_str()), "(skip if -noabc)");
else
run(abc + " -dress -lut 4", "(skip if -noabc)");
}