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.

将程序搬到外扩RAM中运行



  在网上找到的资料讲的一般都是加载到内部RAM中,部分程序如下:

LOAD = FLASH_AB, PAGE = 0            /* Load section to Flash */
RUN = RAM_H0, PAGE = 0                 /* Run section from RAM */
LOAD_START(_text_loadstart),
RUN_START(_text_runstart),
SIZE(_text_size)

程序下载到FLASH中,运行在RAM_H0

由于我的程序比较大,内部RAM已经放不下了,需要加载到外扩的RAM中运行,是不是只需要将RUN=RAM_H0,该为RUN=RAM_EX(RAM_EX为外扩的RAM空间)就可以实现了?