diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-07-10 17:06:05 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-07-10 17:06:05 -0700 |
commit | 7b2599cb94a718d3c3d6fa4b5eb3ad4824ed13c4 (patch) | |
tree | 838b213f355016a83a8c55945f484022238d42b1 /techlibs/xilinx/synth_xilinx.cc | |
parent | 0ab8f28bc7b6fefc1b4acd4e5c1cb437af878806 (diff) | |
download | yosys-7b2599cb94a718d3c3d6fa4b5eb3ad4824ed13c4.tar.gz yosys-7b2599cb94a718d3c3d6fa4b5eb3ad4824ed13c4.tar.bz2 yosys-7b2599cb94a718d3c3d6fa4b5eb3ad4824ed13c4.zip |
Move ABC FF stuff to abc_ff.v; add support for other FD* types
Diffstat (limited to 'techlibs/xilinx/synth_xilinx.cc')
-rw-r--r-- | techlibs/xilinx/synth_xilinx.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 45be9a318..d5ae124e0 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -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"); } |