aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-12-16 15:30:08 +0100
committerGitHub <noreply@github.com>2018-12-16 15:30:08 +0100
commit9522eee02fbc7cb0e375401573efb8ff8f399137 (patch)
tree6aedf8008f087790a5d0d0e7f83a754729c0b74b
parent19ca4e2ac3f9a4d374299e914ac08c47813f909b (diff)
parent6e559ee3c78c0984e1f486ecedf61c3011aa0f0d (diff)
downloadyosys-9522eee02fbc7cb0e375401573efb8ff8f399137.tar.gz
yosys-9522eee02fbc7cb0e375401573efb8ff8f399137.tar.bz2
yosys-9522eee02fbc7cb0e375401573efb8ff8f399137.zip
Merge pull request #723 from whitequark/synth_ice40_map_gates
synth_ice40: split `map_gates` off `fine`
-rw-r--r--techlibs/ice40/synth_ice40.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc
index 931a190e7..37b924dfd 100644
--- a/techlibs/ice40/synth_ice40.cc
+++ b/techlibs/ice40/synth_ice40.cc
@@ -240,6 +240,10 @@ struct SynthIce40Pass : public ScriptPass
run("opt -fast -mux_undef -undriven -fine");
run("memory_map");
run("opt -undriven -fine");
+ }
+
+ if (check_label("map_gates"))
+ {
if (nocarry)
run("techmap");
else