diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-04-22 08:58:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-22 08:58:09 +0200 |
commit | 19fd411e77be57eb6b7a273b8acaa25d462186ef (patch) | |
tree | ac105f82c0c657c335c3920d2798fa1dbc1ad07a /techlibs | |
parent | b40af877f3107150f8b648397ae4007d15406dac (diff) | |
parent | df92e9bdc23432847866e5b1101495e3424121e0 (diff) | |
download | yosys-19fd411e77be57eb6b7a273b8acaa25d462186ef.tar.gz yosys-19fd411e77be57eb6b7a273b8acaa25d462186ef.tar.bz2 yosys-19fd411e77be57eb6b7a273b8acaa25d462186ef.zip |
Merge pull request #911 from mmicko/gowin-nobram
Make nobram false by default for gowin
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/gowin/synth_gowin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/gowin/synth_gowin.cc b/techlibs/gowin/synth_gowin.cc index 9a3fcdbb6..c7983bade 100644 --- a/techlibs/gowin/synth_gowin.cc +++ b/techlibs/gowin/synth_gowin.cc @@ -73,7 +73,7 @@ struct SynthGowinPass : public ScriptPass vout_file = ""; retime = false; flatten = true; - nobram = true; + nobram = false; } void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE |