Part Number: TMS320F28035
Hi TI experts,
I am working on a project using F28035 CLA.
From its datasheet, it is clear that
(1) 0x008800 to 0x008C00 is CLA Data RAM 0, if MMEMCFG.RAM0E is set to 1
(2) 0x008C00 to 0x009000 is CLA Data RAM1, if MMEMCFG.RAM1E is set to 1
(3) 0x009000 to 0x00A000 is CLA Prog RAM, if MMEMCFG.PROGE is set to 1

However, by doing this, CLA occupies a lot of RAM that could otherwise be used by CPU. If my CLA program does not need that much data and program RAM, change I reduce the size of CLA Data RAM0 and 1, and CLA Prog RAM by writing the following to the .cmd file?
CLARAMM0 : origin = 0x009000, length = 0x000400 (previously 0x008800 to 0x008C00)
CLARAMM0 : origin = 0x009400, length = 0x000400 (previously 0x008C00 to 0x009000)
CLAPROG : origin = 0x009800, length = 0x000800 (previously 0x009000 to 0x00A000)
So I can use 0x008800 to 0x008FFF for CPU.
