This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
如题,最近在做讲程序下载到FLASH中的工作,发现添加的F28335.cmd文件中有这样一段程序:
SECTIONS
{
/* Allocate program areas: */
.cinit : > FLASHA PAGE = 0
.pinit : > FLASHA, PAGE = 0
.text : > FLASHA PAGE = 0
codestart : > BEGIN PAGE = 0
ramfuncs : LOAD = FLASHD,
RUN = RAML0,
LOAD_START(_RamfuncsLoadStart),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
LOAD_SIZE(_RamfuncsLoadSize),
PAGE = 0
*****
前面不是将程序分配到FLASHA中了吗?为什么是ramfuncs : LOAD = FLASHD,而不是ramfuncs : LOAD = FLASHA?
能给详细说说这部分的内容吗?