mirror of https://github.com/YosysHQ/yosys.git
Run dffsr2dff in synth_xilinx
This commit is contained in:
parent
7bd329afa0
commit
a75f94ec4a
|
@ -91,6 +91,7 @@ struct SynthXilinxPass : public Pass {
|
||||||
log(" fine:\n");
|
log(" fine:\n");
|
||||||
log(" opt -fast -full\n");
|
log(" opt -fast -full\n");
|
||||||
log(" memory_map\n");
|
log(" memory_map\n");
|
||||||
|
log(" dffsr2dff\n");
|
||||||
log(" dff2dffe\n");
|
log(" dff2dffe\n");
|
||||||
log(" opt -full\n");
|
log(" opt -full\n");
|
||||||
log(" techmap -map +/techmap.v -map +/xilinx/arith_map.v\n");
|
log(" techmap -map +/techmap.v -map +/xilinx/arith_map.v\n");
|
||||||
|
@ -196,6 +197,7 @@ struct SynthXilinxPass : public Pass {
|
||||||
{
|
{
|
||||||
Pass::call(design, "opt -fast -full");
|
Pass::call(design, "opt -fast -full");
|
||||||
Pass::call(design, "memory_map");
|
Pass::call(design, "memory_map");
|
||||||
|
Pass::call(design, "dffsr2dff");
|
||||||
Pass::call(design, "dff2dffe");
|
Pass::call(design, "dff2dffe");
|
||||||
Pass::call(design, "opt -full");
|
Pass::call(design, "opt -full");
|
||||||
Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/arith_map.v");
|
Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/arith_map.v");
|
||||||
|
|
Loading…
Reference in New Issue