/******** ICE-5100 EMULATOR (DOS) TUTORIAL FEATURE MODULE SCREEN #B.2 **********/ menu = 1 define literally PR = 'include scrB.1 nolist' define literally R = 'include scrB.2 nolist' define literally N = 'include scrB.3 nolist' define literally M = 'include FMOD nolist' cls /******************************************************************************/ ' ---------------------------' 'Use the ASM command to assemble 8051 instructions | SCRB2: ASM COMMANDS 2 |' 'into code memory. This is useful for patching | N = Next screen |' 'program code without exiting the emulator to | R = Rewrite SCRB2 |' 'recompile the source code. | PR = Previous screen |' ' | M = Go to features menu |' 'There are two forms for entering 8051 instruc- | Q = Quit tutorial |' 'tions with the ASM command, as a single | RTN = Return to main path |' 'assignment or in the line mode. The following | SCR# = Screen desired |' 'command demonstrates the single assignment form. ---------------------------' 'Place ASM code into memory above the MESSG program code (location 3K).' 'Enter:' ' ' ' ASM 3K = ''MOV A, #50'',''INC A'' ' ' ' 'Now use the ASM command to disassemble the code you just entered. Enter:' ' ' ' ASM 3K LENGTH 2 ' ' ' '-------------Enter N to continue with this Feature Module--------------'