From f39e7cd5cb5f85ff19f3ba3197fb5bfaacb17e18 Mon Sep 17 00:00:00 2001 From: Bob Supnik Date: Sun, 1 Mar 2020 18:21:59 -0800 Subject: [PATCH] SCP: Spelled out CONTINUE in command table (Dave Bryan) --- scp.c | 5 +++-- sim_rev.h | 5 +++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/scp.c b/scp.c index 3f8b6930..0af86c05 100644 --- a/scp.c +++ b/scp.c @@ -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} bootstrap unit\n" }, diff --git a/sim_rev.h b/sim_rev.h index c13adb10..7b12fbb3 100644 --- a/sim_rev.h +++ b/sim_rev.h @@ -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