I am porting a project over to a TI Cortex-M4 from another very old 32bit micro. In this old application there are HUGE sets of lookup tables defined something like this:
const unsigned char array1[] = {blah blah blah};
const unsigned char array2[] = {blah blah blah};
const unsigned char array3[] = {blah blah blah};
const unsigned char array4[] = {blah blah blah};
. ......... and so on......
my problem is that the original application required these arrays to be compiled into consecutive memory locations (ie. placed directly one after the other into code)
Is there anyway I can get Code Composer to do the same? Looking at the memory browser these arrays are not placed into consecutive memory at all.