aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/greenpak4
diff options
context:
space:
mode:
authorAndrew Zonenberg <azonenberg@drawersteak.com>2016-03-29 20:02:59 -0700
committerAndrew Zonenberg <azonenberg@drawersteak.com>2016-03-29 20:02:59 -0700
commit3ea60266488fe7e0b040c379a11d523c11ec9460 (patch)
treea8ea92fb6f870effb4e3902ba1fdad0045c3f4d9 /techlibs/greenpak4
parent19c20235b55648c150df294320b9f2515d2f3c5b (diff)
downloadyosys-3ea60266488fe7e0b040c379a11d523c11ec9460.tar.gz
yosys-3ea60266488fe7e0b040c379a11d523c11ec9460.tar.bz2
yosys-3ea60266488fe7e0b040c379a11d523c11ec9460.zip
Added splitnets to synth_greenpak4
Diffstat (limited to 'techlibs/greenpak4')
-rw-r--r--techlibs/greenpak4/synth_greenpak4.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/techlibs/greenpak4/synth_greenpak4.cc b/techlibs/greenpak4/synth_greenpak4.cc
index 04166d8be..872ad5a2c 100644
--- a/techlibs/greenpak4/synth_greenpak4.cc
+++ b/techlibs/greenpak4/synth_greenpak4.cc
@@ -108,6 +108,7 @@ struct SynthGreenPAK4Pass : public Pass {
log(" check -noinit\n");
log("\n");
log(" json:\n");
+ log(" splitnets (temporary workaround for gp4par parser limitation)\n");
log(" write_json <file-name>\n");
log("\n");
}
@@ -221,6 +222,7 @@ struct SynthGreenPAK4Pass : public Pass {
if (check_label(active, run_from, run_to, "json"))
{
+ Pass::call(design, "splitnets");
if (!json_file.empty())
Pass::call(design, stringf("write_json %s", json_file.c_str()));
}