3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-26 18:45:34 +00:00

Move ABC FF stuff to abc_ff.v; add support for other FD* types

This commit is contained in:
Eddie Hung 2019-07-10 17:06:05 -07:00
parent 0ab8f28bc7
commit 7b2599cb94
4 changed files with 135 additions and 27 deletions

View file

@ -362,7 +362,7 @@ struct SynthXilinxPass : public ScriptPass
if (widemux > 0)
techmap_args += stringf(" -D MIN_MUX_INPUTS=%d", widemux);
if (abc9)
techmap_args += " -map +/xilinx/ff_map.v";
techmap_args += " -map +/xilinx/ff_map.v -D _ABC -map +/xilinx/abc_ff.v";
run("techmap " + techmap_args);
run("clean");
}