I need to place part of the SYS/BIOS code in RAM, for performance reasons. Especially the c28 Hwi package needs to be executed from there, because the flash on my C28x Delfino is too slow.
Looking at http://processors.wiki.ti.com/index.php/SYS/BIOS_FAQs i could find that for the Hwi package i can use:
/* place all the Hwi APIs in RAM */
.hwi: { *.*(.text:*ti_sysbios*_Hwi_*) } > RAM /*where RAM is located between 0x8000 and 0x10000*/
How is the line code for c28x Hwi package?
Regards