1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-01 14:06:14 +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

@@ -487,8 +487,22 @@ t_stat cpu_set_model (UNIT *uptr, int32 val, char *cptr, void *desc)
return SCPE_NOFNC;
}
t_stat cpu_show_model (FILE *st, UNIT *uptr, int32 val, void *desc)
t_stat cpu_print_model (FILE *st)
{
fprintf (st, "model=MicroVAX I");
fprintf (st, "MicroVAX I");
return SCPE_OK;
}
t_stat cpu_model_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, char *cptr)
{
fprintf (st, "Initial memory size is 4MB.\n\n");
fprintf (st, "The simulator is booted with the BOOT command:\n\n");
fprintf (st, " sim> BO{OT} <device>{/R5:flags}\n\n");
fprintf (st, "where <device> is one of:\n\n");
fprintf (st, " RQn to boot from rqn\n");
fprintf (st, " DUn to boot from rqn\n");
fprintf (st, " DUAn to boot from rqn\n");
fprintf (st, " XQ to boot from xq\n");
fprintf (st, " XQA to boot from xq\n\n");
return SCPE_OK;
}