3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-29 15:37:59 +00:00

Merge remote-tracking branch 'origin/master' into iopad_default

This commit is contained in:
Miodrag Milanovic 2019-12-28 16:23:31 +01:00
commit 8c3de1d4bd
20 changed files with 1610 additions and 146 deletions

View file

@ -382,7 +382,10 @@ struct SynthXilinxPass : public ScriptPass
run("opt_expr -fine");
run("wreduce");
run("select -clear");
run("xilinx_dsp");
if (help_mode)
run("xilinx_dsp -family <family>");
else
run("xilinx_dsp -family " + family);
run("chtype -set $mul t:$__soft_mul");
}
}