Quote Originally Posted by InitialDriveGTR View Post
Your code will only write to eeprom once.

Code:
SERIN2 PORTB.0,16780,[WAIT(J),STR ArrayVar\n]
B0 =  B0 [ ARRAYVAR + 1]  ?????
WRITE B0,ARRAYVAR
try this maybe? Not sure if this works but should

Code:
index var byte
code_index var word
ArrayVar var byte[64]
code_index = 0
SERIN2 PORTB.0,16780,[WAIT(J),STR ArrayVar\n]
for index = 1 to 64
WRITE code_index,ArrayVar[index]
code_index = code_index + 1
next
thank you DriveGTR for help i will try it and post result