/******************** ICE-150O (DOS) TUTORIAL SCREEN #10 **********************/ menu = 1 map 0k length 12k ice load messg define literally PR = 'include scr.9 nolist' define literally R = 'include scr.10 nolist' define literally RTN = 'include scr.10 nolist' define literally N = 'include scr.11 nolist' define literally M = 'include scr.2 nolist' cls /******************************************************************************/ ' ------------------------' 'To display the value of the symbol TEMP, enter: | SCR10: SYMBOL ACCESS 2 |' ' | N = Next screen |' ' TEMP | R = Rewrite SCR10 |' ' | PR = Previous screen |' 'Why did an error occur? Whenever symbols are | M = Go to main menu |' 'accessed, they must be fully referenced to the | Q = Quit tutorial |' 'PL/M-51 procedure(s) they are located within. | SCR# = Screen desired |' 'BUFF_SIZE (previous screen) did not need to be fully ------------------------' 'referenced because it is defined at the module level. TEMP is defined within' 'a procedure (ROTATE), therefore it must be preceded with the procedure name ' 'when accessed. ' ' ' 'Enter the following command to display the value of TEMP. Enter:' ' ' ' ROTATE.TEMP ' ' ' '------------------------------------------------------------------------------'