mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-07 14:43:23 +00:00
Shorter "dump" options
This commit is contained in:
parent
8dfa105255
commit
fb8c755726
1 changed files with 4 additions and 4 deletions
|
@ -430,10 +430,10 @@ struct DumpPass : public Pass {
|
||||||
log(" -n\n");
|
log(" -n\n");
|
||||||
log(" only dump the module headers if the entire module is selected\n");
|
log(" only dump the module headers if the entire module is selected\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" -outfile <filename>\n");
|
log(" -o <filename>\n");
|
||||||
log(" write to the specified file.\n");
|
log(" write to the specified file.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" -append <filename>\n");
|
log(" -a <filename>\n");
|
||||||
log(" like -outfile but append instead of overwrite\n");
|
log(" like -outfile but append instead of overwrite\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
}
|
}
|
||||||
|
@ -446,12 +446,12 @@ struct DumpPass : public Pass {
|
||||||
for (argidx = 1; argidx < args.size(); argidx++)
|
for (argidx = 1; argidx < args.size(); argidx++)
|
||||||
{
|
{
|
||||||
std::string arg = args[argidx];
|
std::string arg = args[argidx];
|
||||||
if (arg == "-outfile" && argidx+1 < args.size()) {
|
if ((arg == "-o" || arg == "-outfile") && argidx+1 < args.size()) {
|
||||||
filename = args[++argidx];
|
filename = args[++argidx];
|
||||||
append = false;
|
append = false;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (arg == "-append" && argidx+1 < args.size()) {
|
if ((arg == "-a" || arg == "-append") && argidx+1 < args.size()) {
|
||||||
filename = args[++argidx];
|
filename = args[++argidx];
|
||||||
append = true;
|
append = true;
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue