/************************* I2ICE TUTORIAL SCREEN #11 **************************/ menu=1 define literally P = 'include scr.10 nolist' define literally R = 'include scr.11 nolist' define literally RTN = 'include scr.11 nolist' define literally N = 'include scr.12 nolist' define literally M = 'include scr.2 nolist' cls /******************************************************************************/ ' ------------------------' 'Before you begin emulating the sample program, you | SCR11: OUTPUT LINE |' 'should learn how the I2ICE system displays output | M = Go to main menu |' 'data and input requests. Each byte of data output | N = Next screen |' 'from the probe microprocessor is displayed in the | P = Previous screen |' 'following format: | Q = Quit tutorial |' ' ?UNIT 0 PORT 0002H OUTPUT BYTE 0061H | R = Rewrite SCR11 |' ' | SCR# = Screen desired |' 'The table below explains what the display means. ------------------------' ' ' ' ? I2ICE emulation prompt.' ' UNIT 0 Tells you which probe is emulating. (This information' ' is useful when more than one probe is emulating.)' ' PORT 0002H Tells you to which I/O port the output byte was sent.' ' OUTPUT BYTE 0061H Tells you the value (in hex) of the output byte. (Our' ' sample program sends ASCII code to the output port.' ' Thus, we must use an ASCII conversion table to inter-' ' pret its output bytes. In this case, 61H is ASCII code' ' for lowercase "a".)' ' ' '-----------------------------------------------------------------------------'