diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-04-09 10:06:44 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-04-12 12:28:37 -0700 |
commit | 04e466d5e4ca4654495cb1044f6f200d817f63a2 (patch) | |
tree | dc9868fc1715edf46d27b6f00620d905d41d4eeb /passes/techmap | |
parent | 1c6f0cffd95876eac620bdfe9be50b366dabd8c6 (diff) | |
download | yosys-04e466d5e4ca4654495cb1044f6f200d817f63a2.tar.gz yosys-04e466d5e4ca4654495cb1044f6f200d817f63a2.tar.bz2 yosys-04e466d5e4ca4654495cb1044f6f200d817f63a2.zip |
Add support for synth_xilinx -abc9 and ignore abc9 -dress opt
Diffstat (limited to 'passes/techmap')
-rw-r--r-- | passes/techmap/abc9.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index da3d36354..6e2e349ee 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -1237,6 +1237,11 @@ struct Abc9Pass : public Pass { map_mux16 = true; continue; } + if (arg == "-dress") { + // TODO + abc_dress = true; + continue; + } if (arg == "-g" && argidx+1 < args.size()) { for (auto g : split_tokens(args[++argidx], ",")) { vector<string> gate_list; |