/******** ICE-5100 EMULATOR (DOS) TUTORIAL FEATURE MODULE SCREEN #K.1 *********/ menu = 1 define literally PR = '''To go to the previous screen, enter RTN or M''' define literally R = 'include scrK.1 nolist' define literally N = 'include scrK.2 nolist' define literally M = 'include FMOD nolist' load MESSG namescope = rotate cls /******************************************************************************/ ' ---------------------------' ' FEATURE MODULE K: BREAK REGISTERS (5 screens) | SCRK1: BREAK REGISTERS 1 |' ' | N = Next screen |' 'Program execution can be stopped with the GO TIL | R = Rewrite SCRK1 |' 'command. However, you can also stop execution | PR = Previous screen |' 'using break registers (BRKREGs). | M = Go to features menu |' ' | Q = Quit tutorial |' 'BRKREGs allow you to break program execution at | RTN = Return to main path |' 'specified program addresses and optionally call | SCR# = Screen desired |' 'debug procedures. BRKREGs are also used to store ---------------------------' 'break conditions within one debugging session for use within future' 'debugging sessions. ' ' ' 'Use the DEFINE command followed by the BRKREG''s name and specifications to ' 'create a BRKREG. For example, create the break register BRK1 that breaks at' 'MESSG program line #28 by entering:' ' ' ' DEFINE BRKREG BRK1 = #28 (#28 is address 0064H)' ' ' '-------------Enter N to continue with this Feature Module--------------'