Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/18/04 00:27
Read: times


 
#66947 - RE: Memory Dump
Responding to: ???'s previous message
Well....this is a pretty easy thing to do.....you supply the serial output routine.

#define CODE_SIZE 0x3FFF /* presume 16K part */

void dump_code(void)
{
    unsigned char code *ptr = 0;

    while(ptr < (unsigned char code *)CODE_SIZE)
    {
        SIO_Output(*ptr);
        ptr++;
    }
}


Well there you have it for code.....the data memory version is very similar.

Michael Karas




List of 5 messages in thread
TopicAuthorDate
Memory Dump            01/01/70 00:00      
   RE: Memory Dump            01/01/70 00:00      
   RE: Memory Dump            01/01/70 00:00      
   RE: Memory Dump            01/01/70 00:00      
   RE: Memory Dump            01/01/70 00:00      

Back to Subject List