mirror of https://github.com/YosysHQ/yosys.git
synth_xilinx to call "synth -run coarse" with "-keepdc"
This commit is contained in:
parent
9ac078be6f
commit
7f964859ec
|
@ -240,9 +240,9 @@ struct SynthXilinxPass : public ScriptPass
|
||||||
|
|
||||||
if (check_label("coarse")) {
|
if (check_label("coarse")) {
|
||||||
if (help_mode)
|
if (help_mode)
|
||||||
run("synth -run coarse [-flatten]", "(with '-flatten')");
|
run("synth -keepdc -run coarse [-flatten]", "(with '-flatten')");
|
||||||
else
|
else
|
||||||
run("synth -run coarse" + std::string(flatten ? "" : " -flatten"), "(with '-flatten')");
|
run("synth -keepdc -run coarse" + std::string(flatten ? "" : " -flatten"), "(with '-flatten')");
|
||||||
|
|
||||||
if (widemux > 0 || help_mode)
|
if (widemux > 0 || help_mode)
|
||||||
run("muxpack", " ('-widemux' only)");
|
run("muxpack", " ('-widemux' only)");
|
||||||
|
|
Loading…
Reference in New Issue