Part Number: TMS320F28377D
Dear sir or madam:
When my project migration from COFF to EABI, It's Compilation error. I ues the code: memcpy(&Cla1ConstRunStart,&Cla1ConstLoadStart,(size_t)&Cla1ConstLoadSize); and my CMD file code is like this:
.const_cla : LOAD = FLASHG,
RUN = RAMLS2_LS5,
RUN_START(_Cla1ConstRunStart),
LOAD_START(_Cla1ConstLoadStart),
LOAD_SIZE(_Cla1ConstLoadSize),
PAGE = 0,
ALIGN(4)
When I delete the code:memcpy(&Cla1ConstRunStart,&Cla1ConstLoadStart,(size_t)&Cla1ConstLoadSize); It can compilation passed. My question is : The keywords .const_cla is ok in COFF. What's form in EABI about the keywords .const_cla?
Thank you!