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.

怎样使用CMD文件中定义的地址??



要在CCS的C程序中使用自定义的CMD文件中的某一地址,

MEMORY
{
PAGE 0: /* Program Memory */

PAGE 1: /* Data Memory */

ABC_01 : origin = 0x00100000, length = 0x0000000E

}

SECTIONS
{
ABCFile_Ch01 : > ABC_01, PAGE = 1

}

现在要在程序中用到ABC_01 这个地址,怎样使用ABC_01这个标识符呢?

谢谢大家