/******** ICE-5100 EMULATOR (DOS) TUTORIAL FEATURE MODULE SCREEN #K.4 **********/ menu = 1 define literally PR = 'include scrK.3 nolist' define literally R = 'include scrK.4 nolist' define literally N = 'include scrK.5 nolist' define literally M = 'include FMOD nolist' load MESSG namescope = rotate DEFINE BRKREG BRK2 = #29 CALL CHKREG cls /******************************************************************************/ ' ---------------------------' 'Break registers offer several advantages. You | SCRK4: BREAK REGISTERS 4 |' 'can use them to store and reuse the same set | N = Next screen |' 'of break conditions. Once you create a break | R = Rewrite SCRK4 |' 'register, the definition is stored in the host | PR = Previous screen |' 'computer''s memory; thus, you can reuse break | M = Go to features menu |' 'registers until you exit the ICE-5100 emulator. | Q = Quit tutorial |' ' | RTN = Return to main path |' 'You can also save definitions of break registers | SCR# = Screen desired |' 'to a disk file for reuse in future debugging ---------------------------' 'sessions. Save BRK2 to a file called BRK.TMP using the PUT command: ' ' ' 'NOTE: PUT will write over any file previously defined as BRK.TMP; if you wish' 'to append BRK2 to an existing file, use the APPEND command.' ' ' 'Enter:' ' ' ' PUT BRK.TMP BRK2 ' ' ' '-------------Enter N to continue with this Feature Module--------------'