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.
Hello,
I need a method to override the MEMORY section in the autogenerated linker.cmd file. Ideally this would be some additional configuration parameters I would add to my sysbios.cfg file.
Specifically, I need to override the base address defined for DDR:
MEMORY
{
IROM (RX) : org = 0x11700000, len = 0x100000
IRAM (RWX) : org = 0x11800000, len = 0x40000
L3_CBA_RAM (RWX) : org = 0x80000000, len = 0x20000
DDR : org = 0xc4000000, len = 0x8000000
}
Jeff Kauffman said:I need a method to override the MEMORY section in the autogenerated linker.cmd file.
Specifically, I need to override the base address defined for DDR:
This is done by updating the RTSC platform, or preferably, creating a new RTSC platform with your custom memory layout.
A demo that shows how to do this is available through a link from this page: http://processors.wiki.ti.com/index.php/Using_CCStudio_v4_to_create_a_custom_RTSC_platform
Some additional useful info on how memory management is handled in RTSC programs is here: http://rtsc.eclipse.org/docs-tip/Memory_Management