1
0
mirror of https://github.com/open-simh/simh.git synced 2026-04-29 05:15:30 +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

@@ -525,13 +525,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 tapefile\n\n", dptr->name, i);
fprintf (st, " sim> ATTACH {switches} %s%d tapefile\n\n", dptr->name, i);
}
else
fprintf (st, " sim> attach {switches} %s tapefile\n\n", dptr->name);
fprintf (st, " sim> ATTACH {switches} %s tapefile\n\n", dptr->name);
}
else
fprintf (st, " sim> attach {switches} %s tapefile\n\n", dptr->name);
fprintf (st, " sim> ATTACH {switches} %s tapefile\n\n", dptr->name);
fprintf (st, "Attach command switches\n");
fprintf (st, " -R Attach Read Only.\n");
fprintf (st, " -E Must Exist (if not specified an attempt to create the indicated\n");