Quote Originally Posted by Bruce View Post
Joe,

Did you know you can do this?

Code:
Dat VAR BYTE
Alphabet VAR BYTE[26]

Main:
    FOR Dat = "A" to "Z"
     Alphabet[Dat-65]=Dat ' load Alphabet array 0-25 with A-Z
     HSEROUT [Alphabet[Dat-65],13,10]
     PAUSE 50
    NEXT Dat
    PAUSE 5000
    GOTO Main
    
    END
Woo Hoo, another tidbit of knowledge! I did not know that.
Thank You Bruce.
JS