diff --git a/VAX/vax630_sysdev.c b/VAX/vax630_sysdev.c index 423f8ada..807dafb1 100644 --- a/VAX/vax630_sysdev.c +++ b/VAX/vax630_sysdev.c @@ -970,6 +970,11 @@ return SCPE_OK; t_stat cpu_model_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, char *cptr) { fprintf (st, "Initial memory size is 16MB.\n\n"); +fprintf (st, "The CPU supports the BOOT command and is the only VAX device to do so. Note\n"); +fprintf (st, "that the behavior of the bootstrap depends on the capabilities of the console\n"); +fprintf (st, "terminal emulator. If the terminal window supports full VT100 emulation\n"); +fprintf (st, "(including Multilanguage Character Set support), the bootstrap will ask the\n"); +fprintf (st, "user to specify the language; otherwise, it will default to English.\n\n"); fprintf (st, "The simulator is booted with the BOOT command:\n\n"); fprintf (st, " sim> BOOT\n\n"); return SCPE_OK; diff --git a/VAX/vax_cpu.c b/VAX/vax_cpu.c index c302c58c..4abe809b 100644 --- a/VAX/vax_cpu.c +++ b/VAX/vax_cpu.c @@ -3543,11 +3543,6 @@ fprintf (st, "LOAD command recognizes three switches:\n\n"); fprintf (st, " -o origin argument follows file name\n"); fprintf (st, " -r load the boot ROM\n"); fprintf (st, " -n load the non-volatile RAM\n\n"); -fprintf (st, "The CPU supports the BOOT command and is the only VAX device to do so. Note\n"); -fprintf (st, "that the behavior of the bootstrap depends on the capabilities of the console\n"); -fprintf (st, "terminal emulator. If the terminal window supports full VT100 emulation\n"); -fprintf (st, "(including Multilanguage Character Set support), the bootstrap will ask the\n"); -fprintf (st, "user to specify the language; otherwise, it will default to English.\n\n"); fprintf (st, "These switches are recognized when examining or depositing in CPU memory:\n\n"); fprintf (st, " -b examine/deposit bytes\n"); fprintf (st, " -w examine/deposit words\n"); diff --git a/VAX/vax_sysdev.c b/VAX/vax_sysdev.c index 8bbef94e..ab6a0097 100644 --- a/VAX/vax_sysdev.c +++ b/VAX/vax_sysdev.c @@ -1792,6 +1792,11 @@ fprintf (st, " AUTOGEN (SYS$SYSTEM:MODPARAMS.DAT). If PHYSICALPAGES is specifi fprintf (st, " it will have to be adjusted before running AUTOGEN to recognize more memory.\n"); fprintf (st, " The default value for PHYSICALPAGES is 1048576, which describes 512MB of RAM.\n\n"); fprintf (st, "Initial memory size is 16MB.\n\n"); +fprintf (st, "The CPU supports the BOOT command and is the only VAX device to do so. Note\n"); +fprintf (st, "that the behavior of the bootstrap depends on the capabilities of the console\n"); +fprintf (st, "terminal emulator. If the terminal window supports full VT100 emulation\n"); +fprintf (st, "(including Multilanguage Character Set support), the bootstrap will ask the\n"); +fprintf (st, "user to specify the language; otherwise, it will default to English.\n\n"); fprintf (st, "The simulator is booted with the BOOT command:\n\n"); fprintf (st, " sim> BOOT\n\n"); return SCPE_OK;