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:
parent
12c34136ba
commit
3fc474aa73
2 changed files with 14 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue