This works fine with PBP 2.60a and MPLAB ver 8.53.
Spits it out as expected in the serial output window, and MPLAB shows all data in the EEPROM view window.Code:DATA @300, "a","s","c","i","i" Dat VAR BYTE Index VAR WORD Main: FOR Index = 300 TO 304 READ Index,Dat HSEROUT [Dat,13,10] NEXT Here: GOTO Here
Of course you need a word size variable for the index pointer when the address is > 255.
Bookmarks