1
0
mirror of https://github.com/simh/simh.git synced 2026-01-28 04:48:05 +00:00

Standardized scp command formatting in help output

This commit is contained in:
Mark Pizzolato
2013-01-15 06:21:32 -08:00
parent 3ce1ef2b33
commit 6eb3804620
4 changed files with 32 additions and 32 deletions

View File

@@ -1167,13 +1167,13 @@ if (0 == (uptr-dptr->units)) {
for (i=0; i < dptr->numunits; ++i)
if (dptr->units[i].flags & UNIT_ATTABLE)
fprintf (st, " sim> attach {switches} %s%d diskfile\n", dptr->name, i);
fprintf (st, " sim> ATTACH {switches} %s%d diskfile\n", dptr->name, i);
}
else
fprintf (st, " sim> attach {switches} %s diskfile\n", dptr->name);
fprintf (st, " sim> ATTACH {switches} %s diskfile\n", dptr->name);
}
else
fprintf (st, " sim> attach {switches} %s diskfile\n\n", dptr->name);
fprintf (st, " sim> ATTACH {switches} %s diskfile\n\n", dptr->name);
fprintf (st, "\n%s attach command switches\n", dptr->name);
fprintf (st, " -R Attach Read Only.\n");
fprintf (st, " -E Must Exist (if not specified an attempt to create the indicated\n");