diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 08:48:45 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 08:48:45 -0700 |
commit | 4c9fde87d170fc8d4b729581b055407553951e4c (patch) | |
tree | 6213f8f04492f2868737a4a8348abfd07e0f7c80 /techlibs | |
parent | 2dffa4685b830313204f5d04314a14ed6ecac8ec (diff) | |
download | yosys-4c9fde87d170fc8d4b729581b055407553951e4c.tar.gz yosys-4c9fde87d170fc8d4b729581b055407553951e4c.tar.bz2 yosys-4c9fde87d170fc8d4b729581b055407553951e4c.zip |
Revert "Add "-W' wire delay arg to abc9, use from synth_xilinx"
This reverts commit 2dffa4685b830313204f5d04314a14ed6ecac8ec.
Diffstat (limited to 'techlibs')
-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 f966115cd..f5f8c43e0 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -297,7 +297,7 @@ struct SynthXilinxPass : public ScriptPass if (check_label("map_luts")) { if (abc == "abc9") - run(abc + " -lut +/xilinx/abc.lut -box +/xilinx/abc.box -W 160" + string(retime ? " -dff" : "")); + run(abc + " -lut +/xilinx/abc.lut -box +/xilinx/abc.box" + string(retime ? " -dff" : "")); else if (help_mode) run(abc + " -luts 2:2,3,6:5,10,20 [-dff]"); else |