aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/achronix
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-12-30 12:09:53 -0800
committerEddie Hung <eddie@fpgeh.com>2019-12-30 13:28:29 -0800
commitaa6d06c1b5b0083096ad547b0ad2600fcdc854f4 (patch)
tree29cbf3ff8f04f891e6c948e37bf2061f3865f335 /techlibs/achronix
parent566d9fb77f8688022ae7247fa9466a4327b2adb7 (diff)
downloadyosys-aa6d06c1b5b0083096ad547b0ad2600fcdc854f4.tar.gz
yosys-aa6d06c1b5b0083096ad547b0ad2600fcdc854f4.tar.bz2
yosys-aa6d06c1b5b0083096ad547b0ad2600fcdc854f4.zip
Revert "Revert "synth_* with -retime option now calls abc with -D 1 as well""
This reverts commit 6008bb7002f874e5c748eaa2050e7b6c17b32745.
Diffstat (limited to 'techlibs/achronix')
-rwxr-xr-xtechlibs/achronix/synth_achronix.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/achronix/synth_achronix.cc b/techlibs/achronix/synth_achronix.cc
index 626860d9c..3dbf20911 100755
--- a/techlibs/achronix/synth_achronix.cc
+++ b/techlibs/achronix/synth_achronix.cc
@@ -152,12 +152,12 @@ struct SynthAchronixPass : public ScriptPass {
run("clean -purge");
run("setundef -undriven -zero");
if (retime || help_mode)
- run("abc -markgroups -dff", "(only if -retime)");
+ run("abc -markgroups -dff -D 1", "(only if -retime)");
}
if (check_label("map_luts"))
{
- run("abc -lut 4" + string(retime ? " -dff" : ""));
+ run("abc -lut 4" + string(retime ? " -dff -D 1" : ""));
run("clean");
}