1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

SCP: Initial merge of old style single line help with hierarchical help

This commit is contained in:
Mark Pizzolato
2014-02-01 07:04:44 -08:00
parent 235ffdb6f0
commit eaae19463c
10 changed files with 983 additions and 353 deletions

View File

@@ -124,7 +124,7 @@ DEVICE sysd_dev = {
CTAB vax610_cmd[] = {
{ "BOOT", &vax610_boot, RU_BOOT,
"bo{ot} <device>{/R5:flg} boot device\n"
" type HELP CPU to see bootable devices\n", &run_cmd_message },
" type HELP CPU to see bootable devices\n", NULL, &run_cmd_message },
{ NULL }
};

View File

@@ -61,7 +61,7 @@ int32 sys_model = 0; /* MicroVAX or VAXstatio
CTAB vax630_cmd[] = {
{ "BOOT", &vax630_boot, RU_BOOT,
"bo{ot} boot simulator\n", &run_cmd_message },
"bo{ot} boot simulator\n", NULL, &run_cmd_message },
{ NULL }
};

View File

@@ -141,7 +141,7 @@ DEVICE sysb_dev = {
CTAB vax730_cmd[] = {
{ "BOOT", &vax730_boot, RU_BOOT,
"bo{ot} <device>{/R5:flg} boot device\n"
" type HELP CPU to see bootable devices\n", &run_cmd_message },
" type HELP CPU to see bootable devices\n", NULL, &run_cmd_message },
{ NULL }
};

View File

@@ -168,7 +168,7 @@ DEVICE cmi_dev = {
CTAB vax750_cmd[] = {
{ "BOOT", &vax750_boot, RU_BOOT,
"bo{ot} <device>{/R5:flg} boot device\n"
" type HELP CPU to see bootable devices\n", &run_cmd_message },
" type HELP CPU to see bootable devices\n", NULL, &run_cmd_message },
{ NULL }
};

View File

@@ -206,7 +206,7 @@ DEVICE sbi_dev = {
CTAB vax780_cmd[] = {
{ "BOOT", &vax780_boot, RU_BOOT,
"bo{ot} <device>{/R5:flg} boot device\n"
" type HELP CPU to see bootable devices\n", &run_cmd_message },
" type HELP CPU to see bootable devices\n", NULL, &run_cmd_message },
{ "FLOAD", &vax780_fload, 0,
"fl{oad} <file> {<start>} load file from console floppy\n" },
{ NULL }

View File

@@ -303,7 +303,7 @@ return SCPE_OK;
CTAB vax860_cmd[] = {
{ "BOOT", &vax860_boot, RU_BOOT,
"bo{ot} <device>{/R5:flg} boot device\n"
" type HELP CPU to see bootable devices\n", &run_cmd_message },
" type HELP CPU to see bootable devices\n", NULL, &run_cmd_message },
{ NULL }
};

View File

@@ -72,7 +72,7 @@ int32 sys_model = 0;
CTAB vax_cmd[] = {
{ "BOOT", &vax_boot, RU_BOOT,
"bo{ot} boot simulator\n", &run_cmd_message },
"bo{ot} boot simulator\n", NULL, &run_cmd_message },
{ NULL }
};