/******************* ICE-1500 (DOS) TUTORIAL SCREEN #16 ***********************/ menu = 1 map 0k length 12k ice load messg namescope = rotate define literally PR = 'include scr.15 nolist' define literally R = 'include scr.16 nolist' define literally RTN = 'include scr.16 nolist' define literally N = 'include scr.17 nolist' define literally M = 'include scr.2 nolist' cls /******************************************************************************/ ' ------------------------' 'There is a better way to execute the MESSG program | SCR16: PROCs 1 |' 'which will make debugging easier. | N = Next screen |' ' | R = Rewrite SCR16 |' 'A debug procedure (PROC) can be created to display | PR = Previous screen |' 'the message automatically as the program runs. | M = Go to main menu |' ' | Q = Quit tutorial |' 'This procedure uses the CHAR command to display the | SCR# = Screen desired |' 'contents of the display buffer (DISP_BUFFER) on the ------------------------' 'screen whenever the procedure is called. It also uses the CURY command to ' 'control the screen display. You will create this procedure (named CRT) in the' 'next screen.' ' ' 'To learn about the CURY command, enter: ' ' ' ' HELP CURY ' ' ' '-------------------------------------------------------------------------------'