aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ice40
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-07-18 15:34:28 +0200
committerGitHub <noreply@github.com>2019-07-18 15:34:28 +0200
commite66e8fb59d8443c8d55c1185d6b2ce889a35357d (patch)
tree0bc17b70faef04b33bc736ce818ea4123921590f /techlibs/ice40
parent927f0caa9d70ccf3634b29d8558c78febcc9081c (diff)
parent698ab9beeed7ee585117cc1e5f5126a9092942df (diff)
downloadyosys-e66e8fb59d8443c8d55c1185d6b2ce889a35357d.tar.gz
yosys-e66e8fb59d8443c8d55c1185d6b2ce889a35357d.tar.bz2
yosys-e66e8fb59d8443c8d55c1185d6b2ce889a35357d.zip
Merge pull request #1184 from whitequark/synth-better-labels
synth_{ice40,ecp5}: more sensible pass label naming
Diffstat (limited to 'techlibs/ice40')
-rw-r--r--techlibs/ice40/synth_ice40.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc
index 78ac5ea13..be60a0071 100644
--- a/techlibs/ice40/synth_ice40.cc
+++ b/techlibs/ice40/synth_ice40.cc
@@ -275,14 +275,14 @@ struct SynthIce40Pass : public ScriptPass
run("opt_clean");
}
- if (!nobram && check_label("bram", "(skip if -nobram)"))
+ if (!nobram && check_label("map_bram", "(skip if -nobram)"))
{
run("memory_bram -rules +/ice40/brams.txt");
run("techmap -map +/ice40/brams_map.v");
run("ice40_braminit");
}
- if (check_label("map"))
+ if (check_label("map_ffram"))
{
run("opt -fast -mux_undef -undriven -fine");
run("memory_map");