1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-02 06:25:43 +00:00

Added HELP CPU to all VAX simulators

This commit is contained in:
Mark Pizzolato
2013-01-15 10:18:49 -08:00
parent 6eb3804620
commit 923d5411f5
10 changed files with 225 additions and 27 deletions

View File

@@ -883,12 +883,20 @@ rom_diag_full = 0;
return SCPE_OK;
}
t_stat cpu_show_model (FILE *st, UNIT *uptr, int32 val, void *desc)
t_stat cpu_print_model (FILE *st)
{
#if defined(VAX_620)
fprintf (st, "model=rtVAX 1000");
fprintf (st, "rtVAX 1000");
#else
fprintf (st, "model=MicroVAX II");
fprintf (st, "MicroVAX II");
#endif
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 simulator is booted with the BOOT command:\n\n");
fprintf (st, " sim> BOOT\n\n");
return SCPE_OK;
}