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.
Subject says it all. I cannot find published documentation regarding formatting, keyword usage, etc. for the linker command file. For example, I have no idea how the linker interprets the following (this from a cmd file intended for a F543x device):
SECTIONS
{
.FLASHCODE : load = FLASH_MEM, run = RAM_MEM
/* CODE IN FLASH AND WILL BE COPIED
TO RAM AT EXECUTION HANDLED BY
USER */
.RAMCODE : load = FLASH_MEM /* CODE WILL BE IN RAM */
}
This is the corresponding memory map in the cmd file:
MEMORY
{
RAM_MEM : origin = 0x1C00, length = 0x0200
FLASH_MEM : origin = 0x5C00, length = 0x0200
}
Hello,
Check out section 7.5 of the below doc:
http://www.ti.com/lit/ug/slau131e/slau131e.pdf
Thanks
ki