3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 10:55:51 +00:00

Add support for synth_xilinx -abc9 and ignore abc9 -dress opt

This commit is contained in:
Eddie Hung 2019-04-09 10:06:44 -07:00
parent 12c34136ba
commit 3fc474aa73
2 changed files with 14 additions and 1 deletions

View file

@ -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;