Hi,
I have an application that will run on four cores of a C6678. I would like to load the same .out file to these four cores but it requires me to have conditional statements in my .cfg file. Because the DDR3 memory space allocated for each instance must be different. I need something like the pseudo-code given below;
if current core is 0
put .text to DDR3_C0
if current core is 1
put .text to DDR3_C1
.
.
.
if current core is 7
put .text to DDR3_C7
How do I write such a .cfg file? Does XGCONF GUI handle such? Which document(s) should I read to get used to writing .cfg files? Is there a better way to build a memory structure similar to the one that I have mentioned above?
I am using CCS5.4 with C6678 Multicore DSP.