3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-05 10:50:25 +00:00

Implemented general handler for selection arguments

This commit is contained in:
Clifford Wolf 2013-03-03 10:05:37 +01:00
parent 5bed90ae3a
commit 4fcb9a7b99
5 changed files with 31 additions and 5 deletions

View file

@ -213,7 +213,8 @@ struct ShellPass : public Pass {
log("Press Ctrl-D to leave the interactive shell.\n");
log("\n");
}
virtual void execute(std::vector<std::string>, RTLIL::Design *design) {
virtual void execute(std::vector<std::string> args, RTLIL::Design *design) {
extra_args(args, 1, design, false);
shell(design);
}
} ShellPass;