aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/gowin
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-04-02 19:21:01 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-04-02 19:21:01 +0200
commitdf92e9bdc23432847866e5b1101495e3424121e0 (patch)
treea8889c071f5edeae4dcb6f399cc7c78f01d5529c /techlibs/gowin
parentaaa2690a56a5b8210c163c0c63d95f9577038b2d (diff)
downloadyosys-df92e9bdc23432847866e5b1101495e3424121e0.tar.gz
yosys-df92e9bdc23432847866e5b1101495e3424121e0.tar.bz2
yosys-df92e9bdc23432847866e5b1101495e3424121e0.zip
Make nobram false by default for gowin
Diffstat (limited to 'techlibs/gowin')
-rw-r--r--techlibs/gowin/synth_gowin.cc2
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