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.
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?