This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Placing c28x SYS/BIOS code in different memory segments

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