1
0
mirror of https://github.com/simh/simh.git synced 2026-01-13 23:35:57 +00:00

SCP: Spelled out CONTINUE in command table (Dave Bryan)

This commit is contained in:
Bob Supnik 2020-03-01 18:21:59 -08:00 committed by Mark Pizzolato
parent 43360191c8
commit f39e7cd5cb
2 changed files with 8 additions and 2 deletions

5
scp.c
View File

@ -1,6 +1,6 @@
/* scp.c: simulator control program
Copyright (c) 1993-2019, Robert M Supnik
Copyright (c) 1993-2020, Robert M Supnik
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
@ -23,6 +23,7 @@
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from Robert M Supnik.
13-Feb-20 RMS Spelled out CONTINUE in command table (Dave Bryan)
26-Oct-19 RMS Removed commented out MTAB_VAL code
09-Oct-19 JDB Corrected "sim_ref_type" use for RESTORE and DETACH ALL
19-Jul-19 JDB Added "sim_get_radix" extension hook
@ -531,7 +532,7 @@ static CTAB cmd_table[] = {
"go {new PC} start simulation\n" },
{ "STEP", &run_cmd, RU_STEP,
"s{tep} {n} simulate n instructions\n" },
{ "CONT", &run_cmd, RU_CONT,
{ "CONTINUE", &run_cmd, RU_CONT,
"c{ont} continue simulation\n" },
{ "BOOT", &run_cmd, RU_BOOT,
"b{oot} <unit> bootstrap unit\n" },

View File

@ -41,13 +41,18 @@ patch date module(s) and fix(es)
0 01-Dec-2019 scp.c and supporting libraries
- new features and extensions to support the HP simulators
- lengthened CONT to CONTNIUE for V4.x compatibility
sim_sock.c
- latest bug fixes from V4.x
PDP-11
- fixed race condition in DZ11 (Mark Pizzolato)
VAX
- added hook for unpredictable indexed immediate in .aw flows
- revamped Qbus memory simulation to behave as a Qbus peripheral
*/
/* V3.10 revision history