diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-12-30 12:09:53 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-12-30 13:28:29 -0800 |
commit | aa6d06c1b5b0083096ad547b0ad2600fcdc854f4 (patch) | |
tree | 29cbf3ff8f04f891e6c948e37bf2061f3865f335 /techlibs/coolrunner2 | |
parent | 566d9fb77f8688022ae7247fa9466a4327b2adb7 (diff) | |
download | yosys-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/coolrunner2')
-rw-r--r-- | techlibs/coolrunner2/synth_coolrunner2.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/coolrunner2/synth_coolrunner2.cc b/techlibs/coolrunner2/synth_coolrunner2.cc index 014c68622..d73241fa8 100644 --- a/techlibs/coolrunner2/synth_coolrunner2.cc +++ b/techlibs/coolrunner2/synth_coolrunner2.cc @@ -161,7 +161,7 @@ struct SynthCoolrunner2Pass : public ScriptPass if (check_label("map_pla")) { - run("abc -sop -I 40 -P 56"); + run("abc -sop -I 40 -P 56" + string(retime ? " -dff -D 1" : "")); run("clean"); } |