1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 04:01:38 +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

@@ -1972,14 +1972,14 @@ return SCPE_OK;
t_stat eth_attach_help(FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, char *cptr)
{
fprintf (st, "%s attach help\n\n", dptr->name);
fprintf (st, " sim> show ethernet\n");
fprintf (st, " sim> SHOW ETHERNET\n");
fprintf (st, " libpcap version 1.0.0\n");
fprintf (st, " ETH devices:\n");
fprintf (st, " eth0 en0 (No description available)\n");
fprintf (st, " eth1 tap:tapN (Integrated Tun/Tap support)\n");
fprintf (st, " sim> attach %s eth0\n\n", dptr->name);
fprintf (st, " sim> ATTACH %s eth0\n\n", dptr->name);
fprintf (st, "or equivalently:\n\n");
fprintf (st, " sim> attach %s en0\n\n", dptr->name);
fprintf (st, " sim> ATTACH %s en0\n\n", dptr->name);
return SCPE_OK;
}