READ - BASIC Stamp Command Reference
Page 264 • BASIC Stamp Programming Manual 2.0b • www.parallaxinc.com
StrAddr = Message 'Set address to start of Message.
StringOut:
READ StrAddr,Char 'Get a byte from EEPROM.
IF Char <> 0 THEN Cont 'Not end? Continue.
Stop 'Stop here when done.
Cont:
DEBUG Char 'Show character on screen.
StrAddr = StrAddr + 1 'Point to next character.
GOTO StringOut 'Get next character.