Quote Originally Posted by DDDvvv View Post
how do you write an array of 15 bytes onto eeprom memory? is there any other way other than the "for.....next" command?
That depends if you need to change it during run time, or just set it at compile time.

If you want to change it during the running of the program you need a for..next and use the WRITE command. To set it at compile time you can just use the DATA command:

DATA @0,"s","t","r","i","n","g"," ","o","f"," ","a","s","c","i","i"

Quote Originally Posted by DDDvvv View Post
is it possible to read this same array, and load it onto an lcd with a "lcdout" statement?
Yes, with another for..next:

Code:
for address=0 to 14
    READ address,asciichar
    LCDOUT asciichar
next address