diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-06 09:31:28 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-06 09:31:28 -0800 |
commit | 19541640eece245c344dbadd87a150151546789b (patch) | |
tree | 8a9ed21aee6bc965559e8a52e58e84ef80161657 /techlibs/intel/synth_intel.cc | |
parent | ffd38cb5ea7a6b7d93a49c90bf603131f6c760af (diff) | |
parent | 2e0da685284f20f2e5a111c644eccabc717c740f (diff) | |
download | yosys-19541640eece245c344dbadd87a150151546789b.tar.gz yosys-19541640eece245c344dbadd87a150151546789b.tar.bz2 yosys-19541640eece245c344dbadd87a150151546789b.zip |
Merge remote-tracking branch 'origin/master' into xaig_dff
Diffstat (limited to 'techlibs/intel/synth_intel.cc')
-rw-r--r-- | techlibs/intel/synth_intel.cc | 10 |
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"); } |