3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-18 18:36:43 +00:00

Restore original synth_xilinx commands

This commit is contained in:
Eddie Hung 2019-03-19 16:14:08 -07:00
parent 9156e18f92
commit ae2a625d05

View file

@ -112,7 +112,7 @@ struct SynthXilinxPass : public Pass
log(" opt -full\n"); log(" opt -full\n");
log(" simplemap t:$dff*\n"); log(" simplemap t:$dff*\n");
log(" shregmap -tech xilinx\n"); log(" shregmap -tech xilinx\n");
log(" techmap -map +/techmap.v -map +/xilinx/arith_map.v +/xilinx/ff_map.v\n"); log(" techmap -map +/techmap.v -map +/xilinx/arith_map.v -map +/xilinx/ff_map.v\n");
log(" opt -fast\n"); log(" opt -fast\n");
log("\n"); log("\n");
log(" map_luts:\n"); log(" map_luts:\n");
@ -266,6 +266,7 @@ struct SynthXilinxPass : public Pass
Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/arith_map.v -map +/xilinx/ff_map.v"); Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/arith_map.v -map +/xilinx/ff_map.v");
} }
Pass::call(design, "hierarchy -check");
Pass::call(design, "opt -fast"); Pass::call(design, "opt -fast");
} }