Part Number: TMS320F28377D
Tool/software: TI C/C++ Compiler
Hello,
I have a simple question. My CLA code doesn't fit into one RAM block:
- Cla1Prog size = 0x9e8
- RAMLS5 size = 0x800
And I want to split the section into RAMLS4 & RAMLS5, but if I have understood correctly what I'm reading I cannot do it using the LOAD, RUN, START, etc etc format
Cla1Prog : LOAD = FLASHD,
RUN = RAMLS4 | RAMLS5,
LOAD_START(_Cla1funcsLoadStart),
LOAD_END(_Cla1funcsLoadEnd),
RUN_START(_Cla1funcsRunStart),
LOAD_SIZE(_Cla1funcsLoadSize),
PAGE = 0, ALIGN(4)
The example above is trying to fit the whole block into RAMLS4 or RAMLS5, but is not splitting the section.
How can I do this?
Thank you
,