3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 11:25:53 +00:00

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

This commit is contained in:
Eddie Hung 2019-06-03 23:07:08 -07:00
commit f81a0ed92e
6 changed files with 40 additions and 5 deletions

View file

@ -277,7 +277,11 @@ struct SynthXilinxPass : public ScriptPass
if (!nomux || help_mode)
run("techmap -map +/xilinx/cells_map.v");
run("techmap");
if (!vpr || help_mode)
run("techmap -map +/techmap.v -map +/xilinx/arith_map.v");
else
run("techmap -map +/techmap.v +/xilinx/arith_map.v -D _EXPLICIT_CARRY");
run("opt -fast");
}