1
0
mirror of https://github.com/simh/simh.git synced 2026-02-09 17:52:36 +00:00

SCP: Extend RUN and GO commands with optional UNTIL criteria.

The new RUN/GO command syntax supports a stop criteria.
There are two forms of stop criteria:

1) A normal breakpoint (which exists only until it is encountered)
2) A user specified output string is emitted by the simulated system.

Command syntax is:

    RUN|GO {START-PC-VALUE} {UNTIL breakpoint|"output-string"}
This commit is contained in:
Mark Pizzolato
2016-06-05 02:39:41 -07:00
parent c5ee1ad971
commit f3467d678c
2 changed files with 48 additions and 14 deletions

View File

@@ -279,6 +279,10 @@ The EXPECT command now exists to provide a means of reacting to simulator output
EXPECT React to output produced by a simulated system
SEND Inject input to a simulated system's console
SCREENSHOT Snapshot the current video display window
RUN UNTIL breakpoint Establish the breakpoiunt specified and run until it is encountered
RUN UNTIL "output-string" ... Establish the specified "output-string" as an EXPECT and run until it is encountered.
GO UNTIL breakpoint Establish the breakpoiunt specified and go until it is encountered
GO UNTILE "output-string" ... Establish the specified "output-string" as an EXPECT and go until it is encountered.
#### Command Processing Enhancements