aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/intel
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2020-01-02 21:06:17 +0000
committerGitHub <noreply@github.com>2020-01-02 21:06:17 +0000
commitf8d5920a7e61f78873b7bf49dd7e8f3a83f7adf3 (patch)
treee7c5b19ffae2bfc40e682f696d2ae40513717ad7 /techlibs/intel
parentef6548203cca239a98b00ea652a92fe3e20f97d7 (diff)
parent550310e2647c7aac1e49b79d9ff912436103062f (diff)
downloadyosys-f8d5920a7e61f78873b7bf49dd7e8f3a83f7adf3.tar.gz
yosys-f8d5920a7e61f78873b7bf49dd7e8f3a83f7adf3.tar.bz2
yosys-f8d5920a7e61f78873b7bf49dd7e8f3a83f7adf3.zip
Merge pull request #1604 from whitequark/unify-ram-naming
Harmonize BRAM/LUTRAM descriptions across all of Yosys
Diffstat (limited to 'techlibs/intel')
-rw-r--r--techlibs/intel/synth_intel.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/techlibs/intel/synth_intel.cc b/techlibs/intel/synth_intel.cc
index a3d346407..2ebb8bf50 100644
--- a/techlibs/intel/synth_intel.cc
+++ b/techlibs/intel/synth_intel.cc
@@ -187,10 +187,10 @@ struct SynthIntelPass : public ScriptPass {
}
if (!nobram && check_label("map_bram", "(skip if -nobram)")) {
- if (family_opt == "cycloneiv" ||
- family_opt == "cycloneive" ||
- family_opt == "max10" ||
- help_mode) {
+ if (family_opt == "cycloneiv" ||
+ family_opt == "cycloneive" ||
+ family_opt == "max10" ||
+ help_mode) {
run("memory_bram -rules +/intel/common/brams_m9k.txt", "(if applicable for family)");
run("techmap -map +/intel/common/brams_map_m9k.v", "(if applicable for family)");
} else {
@@ -224,7 +224,7 @@ struct SynthIntelPass : public ScriptPass {
if (check_label("map_cells")) {
if (iopads || help_mode)
run("iopadmap -bits -outpad $__outpad I:O -inpad $__inpad O:I", "(if -iopads)");
- run(stringf("techmap -map +/intel/%s/cells_map.v", family_opt.c_str()));
+ run(stringf("techmap -map +/intel/%s/cells_map.v", family_opt.c_str()));
run("dffinit -highlow -ff dffeas q power_up");
run("clean -purge");
}