/******** ICE-5100 EMULATOR (DOS) TUTORIAL FEATURE MODULE SCREEN #J.1 **********/ menu = 1 define literally PR = '''To go to the previous screen, enter RTN or M''' define literally R = 'include scrJ.1 nolist' define literally N = 'include scrJ.2 nolist' define literally M = 'include FMOD nolist' load MESSG set :main_display to messg.lst source = false namescope = rotate go from 0 forever;halt /* clear break conditions */ cls /******************************************************************************/ ' ---------------------------' ' FEATURE MODULE J: GO COMMAND (4 screens) | SCRJ1: GO COMMAND 1 |' ' | N = Next screen |' 'The GO command is the primary method of entering | R = Rewrite SCRJ1 |' 'emulation. Using various options with the | PR = Previous screen |' 'command, you can specify where to begin and end | M = Go to features menu |' 'emulation, and where to start and stop tracing | Q = Quit tutorial |' '(refer to MODL for information on tracing). | RTN = Return to main path |' ' | SCR# = Screen desired |' 'When the GO command is executed without options, ---------------------------' 'execution begins from the current program counter and continues until the ' 'emulator executes a previously defined breakpoint, or HALT is entered. To ' 'execute the MESSG program, enter:' ' ' ' GO (there will be no screen display of MESSG''s message)' ' ' 'Note the prompt has changed to ( emu> ) to indicate emulation is in progress.' 'Commands that do not interfere with emulation may be entered. Attempting to' 'enter a command that interferes will result in an error. To halt execution,' 'enter:' ' HALT ' '-------------Enter N to continue with this Feature Module--------------'