/******** ICE-1500 EMULATOR (DOS) TUTORIAL FEATURE MODULE SCREEN #A.1 *********/ menu = 1 define literally PR = '''To go to the previous screen, enter RTN or M''' define literally R = 'include SCRA.1 nolist' define literally N = 'include SCRA.2 nolist' define literally M = 'include FMOD nolist' load MESSG namescope = rotate base = hex cls /******************************************************************************/ ' ---------------------------' ' FEATURE MODULE A: MEMORY ACCESS (6 screens) | SCRA1: MEMORY ACCESS 1 |' ' | N = Next Screen |' 'The main tutorial path explains how to use | R = Rewrite SCRA1 |' 'program symbols to display and set values in | PR = Previous screen |' 'memory. You can also display and set values in | M = Go to features menu |' 'memory using memory addresses and memory type | Q = Quit tutorial |' '(Mtype) commands. This module demonstrates the | RTN = Return to main path |' 'use of Mtype commands. | SCR# = Screen desired |' ' ---------------------------' 'Try the command for the Mtype BYTE with the internal data memory (IDATA) ' 'address 0. Enter:' ' ' ' BYTE IDATA 0 ' ' ' 'You can display a number of contiguous bytes using the LENGTH or TO options:' ' ' ' BYTE IDATA 0 LENGTH 8 ' ' BYTE IDATA 0 TO 8 ' ' ' '-------------Enter N to continue with this Feature Module--------------'