mirror of
https://github.com/YosysHQ/yosys
synced 2026-01-18 16:28:57 +00:00
verific: add support for ignoring specified modules via command line argument
This commit is contained in:
parent
8101c87fab
commit
5b1f89a0df
1 changed files with 7 additions and 0 deletions
|
|
@ -3688,6 +3688,13 @@ struct VerificPass : public Pass {
|
|||
veri_file::AddLOption(args[++argidx].c_str());
|
||||
continue;
|
||||
}
|
||||
if (args[argidx] == "-ignore_module") {
|
||||
for (argidx++; argidx < GetSize(args); argidx++) {
|
||||
string name = args[argidx];
|
||||
veri_file::AddToIgnoredParsedModuleNames(name.c_str());
|
||||
}
|
||||
goto check_error;
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue