Part Number:AM5718
Tool/software: Code Composer Studio
Hi
Let say that we want to place the code,data and stack in OCMC_RAM, after creating a Project, is manipulation of the linker.cmd file the only way of moving an applications memory location?
It is possible to move ceartain sections around, for example like adding thsi to the app.cfg file
Program.sectMap[".c_int00"] = new Program.SectionSpec();
Program.sectMap[".c_int00"].loadAddress = 0x40300000;
Program.sectMap[".c_int00"].runAddress = 0x40300000;
But that is just one section, do we need to move all sections around like this?
Regards