Hi There
I'm struggling finding any documentation for the gory low-level implementation details of DSP/BIOS 6. I can find out most of the stuff by single-stepping thru code and looking at the bios source files. Things I'd expect this documentation to cover are (just examples):
- on which stack and heap is code executed that runs before bios is started (i.e. static object initialisation, main() etc.)
- where is the ISR/HWI stack located, how can I control its location and size
- ...
Things like this are quite handy to know for debugging (i.e. HWIs run on the same stack as the one used during startup, i.e before bios is started, so your stack peak will be nonzero even if there has no HWI ocurred so far).
Cheers,
Sam