Hi,
I am trying to place a memory section right after an interrupt vector table section, which is defined in a separate .cmd file.
So far I had no luck and would greatly appreciate your help.
Below is a theoretical content of two .cmd files to present what I am trying to achieve.
a.cmd
SECTIONS { .resetVecs: load > 0x00000000 .... }
b.cmd
SECTIONS { .infoheader: > 0x00000000 + SIZE(.resetVecs) //this is supposed to place .infoheader right after .resetVecs. .... }
I cannot put everything in one .cmd file because the first one gets generated automatically by TI-RTOS.
Is there a way to achieve such an alignment of memory sections?
Thank you very much,
Peter A.