From: Andrew Zonenberg Date: Wed, 30 Mar 2016 03:02:59 +0000 (-0700) Subject: Added splitnets to synth_greenpak4 X-Git-Tag: yosys-0.7~280^2~8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ea60266488fe7e0b040c379a11d523c11ec9460;p=yosys.git Added splitnets to synth_greenpak4 --- 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 \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())); }