.bss > ISRAM
.cinit > ISRAM
.const > ISRAM
.far > ISRAM
.stack > ISRAM
.cio > ISRAM
.sysmem > ISRAM
}
我的cmd文件在这里啊,
是在不知道怎么回事,我刚刚改变了以下那个地址,结果现在就出现这样的错误
Loader: One or more sections of your program falls into a memory region that is not writable. These regions will not actually be written to the target. Check your linker configuration and/or memory map.
我gel文件
StartUp()
{
/* C64xx sim specific memory mapping */
GEL_MapOn();
GEL_MapReset();
/* uncomment the following line to initialize the
EMIF registers on the C6x when Code Composer starts up */
emif_init();
}
/* OnReset callback function called after the target processor has been reset */
OnReset(int nErrorCode)
{
if (nErrorCode)
{
GEL_TextOut(\"An error occured while resetting -%d-\\n\",nErrorCode);
}
else
{
emif_init();
}
}
/*
* Menuitem creates a selection available beneath the GEL
* menu selection in Code Composer Studio.
*/
menuitem \"Resets\";