CCS 5.0 Compiler,How can i malloc a global variable to a address? just like code below:
define: unsigned int g_dwInput[1024] = {0}; //global variable
unsigned int g_dwOutput[1024] = {0}; //global variable
I need g_dwInput's first address is 0x800000(for example).
g_dwInput's first address is 0x900000
ADS(codewarrior for arm developer suite),can use instruction MAP,just like code below:
MAP 0x800000
g_dwInput # 1024
MAP 0x900000
g_dwOutput # 1024
How can CCS 5.0 Compiler achieve this fuction?? For example...Sorry for my poor english,thank u