/******************** ICE-1500 (DOS) TUTORIAL SCREEN #12 ***********************/ menu = 1 map 0k length 12k ice load messg namescope = rotate define literally PR = 'include scr.11 nolist' define literally R = 'include scr.12 nolist' define literally RTN = 'include scr.12 nolist' define literally N = 'include scr.13 nolist' define literally M = 'include scr.2 nolist' cls /******************************************************************************/ ' -----------------------' 'To determine the address of a symbol, precede the | SCR12: SYMBOL ACCESS 3|' 'symbol name with the dot operator ( . ). Display the | N = Next screen |' 'address of the symbol TEMP. Enter: | R = Rewrite SCR12 |' ' | PR = Previous screen |' ' .TEMP | M = Go to main menu |' ' | Q = Quit tutorial |' 'The emulator also allows accesses to program labels. | SCR# = Screen desired |' 'Within the ROTATE procedure is a label named PRINT. -----------------------' 'Enter:' ' ' ' .PRINT ' ' ' 'The syntax error occured because PRINT is a system keyword. When accessing ' 'symbols which are also keywords, the symbol must be preceded with a quote ' 'mark. Enter:' ' ' ' ."PRINT ' ' ' '------To learn more about accessing symbols in memory enter MODA -------'