aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ecp5/synth_ecp5.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-09-05 12:00:23 -0700
committerGitHub <noreply@github.com>2019-09-05 12:00:23 -0700
commit903cd58acf7c490e0b75e34742966dc62e61028f (patch)
tree24ed0acd4627da70e762abfb362a20fa3ae64b49 /techlibs/ecp5/synth_ecp5.cc
parent58ec1df4c26599338f2f45941ed8ca402abfe607 (diff)
parentaa1491add3722e4cfae35755cc4cecfd3e5a6c82 (diff)
downloadyosys-903cd58acf7c490e0b75e34742966dc62e61028f.tar.gz
yosys-903cd58acf7c490e0b75e34742966dc62e61028f.tar.bz2
yosys-903cd58acf7c490e0b75e34742966dc62e61028f.zip
Merge pull request #1312 from YosysHQ/xaig_arrival
Allow arrival times of sequential outputs to be specified to abc9
Diffstat (limited to 'techlibs/ecp5/synth_ecp5.cc')
-rw-r--r--techlibs/ecp5/synth_ecp5.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/techlibs/ecp5/synth_ecp5.cc b/techlibs/ecp5/synth_ecp5.cc
index a8075e86e..2593546e0 100644
--- a/techlibs/ecp5/synth_ecp5.cc
+++ b/techlibs/ecp5/synth_ecp5.cc
@@ -280,12 +280,17 @@ struct SynthEcp5Pass : public ScriptPass
if (abc2 || help_mode) {
run("abc", " (only if -abc2)");
}
- run("techmap -map +/ecp5/latches_map.v");
+ std::string techmap_args = "-map +/ecp5/latches_map.v";
+ if (abc9)
+ techmap_args += " -map +/ecp5/abc_map.v -max_iter 1";
+ run("techmap " + techmap_args);
+
if (abc9) {
if (nowidelut)
run("abc9 -lut +/ecp5/abc_5g_nowide.lut -box +/ecp5/abc_5g.box -W 200");
else
run("abc9 -lut +/ecp5/abc_5g.lut -box +/ecp5/abc_5g.box -W 200");
+ run("techmap -map +/ecp5/abc_unmap.v");
} else {
if (nowidelut)
run("abc -lut 4 -dress");