Question about EEPROM layout
Mike Green
Posts: 23,101
There are a number of word pointers in the first 16 bytes of memory of a Spin program. One, called vbase, gives the number of bytes "loaded". Another, called dbase, points just past two longs containing $FFF9FFFF which is used as a marker for the beginning of the stack. My question is "what is in the space between vbase and the stack marker. I assume this contains some or all of the program's VAR space since it seems to contain zeros. Anybody know? I know that many programs assume that this is zero. Is this documented?
Comments
VARs are initialized to zero. I presume this is done by the loader.