/******** ICE-1500 EMULATOR (DOS) TUTORIAL FEATURE MODULE SCREEN #A.4 *********/ menu = 1 define literally PR = 'include scrA.3 nolist' define literally R = 'include scrA.4 nolist' define literally N = 'include scrA.5 nolist' define literally M = 'include FMOD nolist' load MESSG namescope = rotate base = hex cls /******************************************************************************/ ' ---------------------------' 'Mtypes can also be used to change values in | SCRA4: MEMORY ACCESS 4 |' 'memory. | N = Next Screen |' ' | R = Rewrite SCRA4 |' 'The Mtype BYTE will be used in the following | PR = Previous screen |' 'examples. You can substitute any valid Mtype | M = Go to features menu |' '(enter HELP MTYPE for information on | Q = Quit tutorial |' 'Mtypes). | RTN = Return to main path |' ' | SCR# = Screen desired |' 'First, set a single value at address IDATA 0, ---------------------------' 'then display the value. Enter:' ' ' ' BYTE IDATA 0 = 61H ' ' BYTE IDATA 0 ' ' ' 'Next, set and display values in five contiguous addresses. Enter:' ' ' ' BYTE IDATA 0 = 49H, 6EH, 74H, 65H, 6CH ' ' BYTE IDATA 0 LENGTH 5T ' ' ' '-------------Enter N to continue with this Feature Module--------------'