/******** ICE-5100 EMULATOR (DOS) TUTORIAL FEATURE MODULE SCREEN #H.1 **********/ menu = 1 define literally PR = '''To go to the previous screen, enter RTN or M''' define literally R = 'include scrH.1 nolist' define literally N = 'include scrH.2 nolist' define literally M = 'include FMOD nolist' load MESSG cls /******************************************************************************/ ' ---------------------------' ' FEATURE MODULE H: NAMESCOPE (5 screens) | SCRH1: NAMESCOPE 1 |' ' | N = Next screen |' 'NAMESCOPE is used to reduce the amount of | R = Rewrite SCRH1 |' 'information necessary to reference user program | PR = Previous screen |' 'variables. NAMESCOPE is automatically set to | M = Go to features menu |' 'the main module when a program is loaded. This | Q = Quit tutorial |' 'allows you to reference symbols within that | RTN = Return to main path |' 'module without preceding the variable name with | SCR# = Screen desired |' 'the module name. ---------------------------' ' ' 'For example, when the MESSG program is loaded, NAMESCOPE is automatically set' 'to :MAIN_DISPLAY. Variables at this level, such as INT_FLAG, do not need to be' 'preceded with the module name.' ' ' 'NAMESCOPE can also be manually set to the name of a module or PL/M-51 procedure' 'to allow access to variables within that block, examples follow. ' ' ' '-------------Enter N to continue with this Feature Module--------------'