mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Added dff2dffe to synth_xilinx
This commit is contained in:
parent
7bde74cd2a
commit
dff8bd3b2a
|
@ -66,6 +66,7 @@ struct SynthXilinxPass : public Pass {
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" coarse:\n");
|
log(" coarse:\n");
|
||||||
log(" synth -run coarse\n");
|
log(" synth -run coarse\n");
|
||||||
|
log(" dff2dffe\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" bram:\n");
|
log(" bram:\n");
|
||||||
log(" memory_bram -rules +/xilinx/brams.txt\n");
|
log(" memory_bram -rules +/xilinx/brams.txt\n");
|
||||||
|
@ -132,6 +133,7 @@ struct SynthXilinxPass : public Pass {
|
||||||
if (check_label(active, run_from, run_to, "coarse"))
|
if (check_label(active, run_from, run_to, "coarse"))
|
||||||
{
|
{
|
||||||
Pass::call(design, "synth -run coarse");
|
Pass::call(design, "synth -run coarse");
|
||||||
|
Pass::call(design, "dff2dffe");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (check_label(active, run_from, run_to, "bram"))
|
if (check_label(active, run_from, run_to, "bram"))
|
||||||
|
|
Loading…
Reference in a new issue