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.

CLA中的const数据定义问题



常量数据,在TI例程中,有的定义如下:

.const_cla       : > RAMLS0,       PAGE = 1

而有的定义如下:

.const_cla       :  LOAD = FLASHB,
                       RUN = RAMLS0,
                       RUN_START(_Cla1ConstRunStart),
                       LOAD_START(_Cla1ConstLoadStart),
                       LOAD_SIZE(_Cla1ConstLoadSize),
                       PAGE = 1

这两种有什么区别吗?程序中还需要copy处理吗?