POST #10, not #9

anyways, look what your actual code do...
Code:
FOR ADDR=0 TO 13
I2Cread SDA,SCL,$A0,ADDR,[bYTEA]

lcdout $FE,1  ' it always clear your LCD and return to home
LCDOUT $FE,$80,"INCERCARI" ' it always draw this line
LCDOUT $FE,$C0+addr ,ByteA '  and finally here, it will only draw a single character, because you ALWAYS clear the WHOLE lcd with $FE,1

pause 300
next
hence why i've move most LCDOUT BEFORE the FOR/NEXT loop.... twice.