Part Number: TMS320C6678
Tool/software: TI-RTOS
Hi,
i am using custom board based on TMS320C6678 DSP processor. i want to know how to create the platform files i.e. defining memory sections for for custom board. my existing project file is using predefined memory section in .cfg file but i dont where those macros defined in CCS project. please find the below examples defined in .cfg file in my project.
/* Memory map */
Program.sectMap[".dataL1D"] = "L1D_RAM";
Program.sectMap[".text"] = "C0_DATA_RAM"; //"L2RAM";
Program.sectMap[".const"] = "L2RAM";
Program.sectMap[".qmss"] = "C0_NON_CACHE";
Program.sectMap[".cppi"] = "C0_NON_CACHE";
Program.sectMap[".hostregion"] = "C0_NON_CACHE";
Program.sectMap[".srioSharedMem"] = "C0_NON_CACHE";
Program.sectMap[".dataL2"] = "L2RAM";
Program.sectMap[".far"] = "C0_DATA_RAM";
i want to know how the "C0_DATA_RAM" is mapped to specific memory location which is reflecting in linker.cmd file.
regards
Bala