this one is dangerous and you trick the compiler
Code:
For EEnum = EEnum TO EEnum+7
doing that you'll jump in an endless loop. i don't know what's around your sub but i think this one make much sense

Code:
EEtext:
    For CharAddress = EEnum TO EEnum+7
         Read CharAddress, Char
         LCDOUT Char
         Next 
    
    Return