diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:14:12 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:14:12 -0800 |
commit | 5f970863023881caaa3a64120a0f767386d35d62 (patch) | |
tree | b373796abb0a02a4935062fe1abcc86cf3c7ff24 /techlibs/coolrunner2/synth_coolrunner2.cc | |
parent | d597e3e979d534d81c9c666d4b8eb95ed1bb4aa6 (diff) | |
parent | f8d5920a7e61f78873b7bf49dd7e8f3a83f7adf3 (diff) | |
download | yosys-5f970863023881caaa3a64120a0f767386d35d62.tar.gz yosys-5f970863023881caaa3a64120a0f767386d35d62.tar.bz2 yosys-5f970863023881caaa3a64120a0f767386d35d62.zip |
Merge remote-tracking branch 'origin/master' into eddie/abc9_refactor
Diffstat (limited to 'techlibs/coolrunner2/synth_coolrunner2.cc')
-rw-r--r-- | techlibs/coolrunner2/synth_coolrunner2.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/coolrunner2/synth_coolrunner2.cc b/techlibs/coolrunner2/synth_coolrunner2.cc index 014c68622..388e2b792 100644 --- a/techlibs/coolrunner2/synth_coolrunner2.cc +++ b/techlibs/coolrunner2/synth_coolrunner2.cc @@ -55,7 +55,7 @@ struct SynthCoolrunner2Pass : 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("\n"); log("The following commands are executed by this synthesis command:\n"); @@ -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"); } |