aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ecp5
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-01-02 12:44:06 -0800
committerEddie Hung <eddie@fpgeh.com>2020-01-02 12:44:06 -0800
commitb454735bea6727f346fdbbc28f261b40d91c61ba (patch)
tree6e82d90b00f0bf65ae340d97d2df4fd1558bb2b4 /techlibs/ecp5
parent345e98f87105316da9797e01bdbdd3932269cfdf (diff)
parentef6548203cca239a98b00ea652a92fe3e20f97d7 (diff)
downloadyosys-b454735bea6727f346fdbbc28f261b40d91c61ba.tar.gz
yosys-b454735bea6727f346fdbbc28f261b40d91c61ba.tar.bz2
yosys-b454735bea6727f346fdbbc28f261b40d91c61ba.zip
Merge remote-tracking branch 'origin/master' into xaig_dff
Diffstat (limited to 'techlibs/ecp5')
-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 a0ea6d1f9..1ecb9cac3 100644
--- a/techlibs/ecp5/synth_ecp5.cc
+++ b/techlibs/ecp5/synth_ecp5.cc
@@ -62,7 +62,7 @@ struct SynthEcp5Pass : public ScriptPass
log(" do not flatten design before synthesis\n");
log("\n");
log(" -retime\n");
- log(" run 'abc' with -dff option\n");
+ log(" run 'abc' with '-dff -D 1' options\n");
log("\n");
log(" -noccu2\n");
log(" do not use CCU2 cells in output netlist\n");
@@ -290,7 +290,7 @@ struct SynthEcp5Pass : public ScriptPass
else
run("techmap -map +/techmap.v -map +/ecp5/arith_map.v");
if (retime || help_mode)
- run("abc -dff", "(only if -retime)");
+ run("abc -dff -D 1", "(only if -retime)");
}
if (check_label("map_ffs"))