pbase, vbase, dbase, pcurr and dcurr are used to launch the user's spin program in cog0.
pbase = program base address in hub ram
vbase = variables base address in hub ram
dbase = stack base address in hub ram
pcurr = current program address being executed in hub ram
dcurr = current stack address in hub ram
Knowing the layout of these 16 bytes allows you to load a .binary file from an SD card into the EEPROM -- I'm doing this now on a customer project that is too big to fit into 32K, and has logical sections.
Comments
pbase = program base address in hub ram
vbase = variables base address in hub ram
dbase = stack base address in hub ram
pcurr = current program address being executed in hub ram
dcurr = current stack address in hub ram