real time eeprom read to debug.
Is there anyway to send EEPROM to debug without using a register or memory location, I want to be able to read chunks of the EEPROM and send it to debug terminal, is the only way to do that a for loop and writing to a register?
Comments
lastAddr CON $xxxx ' last address to be displayed i VAR word datum VAR byte for i = 0 to lastAddr-1 read i,datum debug datum next