Hello. I have certain project, it uses a lot of custom characters, and they need to be changed frequently. I've already learned how to read data from eeprom into array, but I'd like to somehow mate array and LCDOUT, so I can slide-in out data, to create visual effects, any idea?

I'm asking for this:

Code:
lcdout $fe,$40, $e, $11, $12, $14, $1e, $11, $11, $12
How to replace hex data here with dynamic data from array?

Just in theory, how I see this code in some idealistic BASIC:

Code:
DIM GRAPH(8) 'define array with 8 lines
GRAPH(1)=$FE 
GRAPH(2)=$CO ' and so on, example of data in array
For A=0 to 7 ' loop till 8
LCDOUT $FE, $40+A, GRAPH(A) - write bytes to LCD memory
NEXT A
But of course, above won't work in PBP.