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.

place function at specific address CCS v6.1.3 (Win7 64 bit) with TMS570ls3137

I need to have the linker PLACE a function at a certain address that I choose and never move it even if other code is added (place the other code around it)

in Keil is done this way
void booterEntry (void) __attribute__((section(".ARM.__at_0xF00")));
void booterEntry (void)
{

booterControlLoop();
}
the function booterEntry will always be at F00

how do you do this with CCS?