mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-25 21:57:01 +00:00
Add genlib support to abc_new
This commit is contained in:
parent
4f968c6695
commit
e4ab6acb46
2 changed files with 23 additions and 5 deletions
|
@ -68,6 +68,7 @@ struct AbcNewPass : public ScriptPass {
|
|||
log(" -constr <file>\n");
|
||||
log(" -dont_use <cell_name>\n");
|
||||
log(" -liberty <file>\n");
|
||||
log(" -genlib <file>\n");
|
||||
log(" these options are passed on to the 'abc9_exe' command which invokes\n");
|
||||
log(" the ABC tool on individual modules of the design. please see\n");
|
||||
log(" 'help abc9_exe' for more details\n");
|
||||
|
@ -90,7 +91,7 @@ struct AbcNewPass : public ScriptPass {
|
|||
if (args[argidx] == "-exe" || args[argidx] == "-script" ||
|
||||
args[argidx] == "-D" ||
|
||||
args[argidx] == "-constr" || args[argidx] == "-dont_use" ||
|
||||
args[argidx] == "-liberty") {
|
||||
args[argidx] == "-liberty" || args[argidx] == "-genlib") {
|
||||
abc_exe_options += " " + args[argidx] + " " + args[argidx + 1];
|
||||
argidx++;
|
||||
} else if (args[argidx] == "-run" && argidx + 1 < args.size()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue