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.

CCS/TMS320C6414: memory overflow

Part Number: TMS320C6414

Tool/software: Code Composer Studio

Imported a legacy CCS 3.3 project into CCS 7.2. It is a custom board.

It used to build under CCS3.3

IN CCS 7.3 it complains about memory overflow. need help!

"SyncDMA.obj" "Time01.obj" 
<Linking>
"C:/Users/HDL64-S3/dual-return/HDL2_Vaa_hallfailtest/EpromBoot11-02.cmd", line 34: error #10099-D:
   placement fails for object ".text", size 0x3a60 (page 0).  Available ranges:
   RAM          size: 0x4a00       unused: 0x2cdc       max hole: 0x2cdc   
error #10010: errors encountered during linking;

The memory allocation follows:


MEMORY
{

 BOOT   : origin = 0x0000, len=0x400,fill=0x0000
 VECTOR   : origin = 0x400, len=0x200
 RAM   : origin = 0x600, len=0x4A00,FILL=0x0000
        DATA   : origin = 0x5100, len = 0x1000, FILL= 0X0000
        MDATA   : origin = 0x6100, len = 0x1B00, FILL = 0x0
        DATA2   : origin = 0x7C00, len = 0x400, FILL= 0X0000
}

SECTIONS
{
  .boot > BOOT
        .vectors > VECTOR
        .main: load= 0X600
        .text >RAM
        .bss >DATA
        .data   >DATA
        .pend >RAM 
        .data2  >DATA2
        .stack  >RAM
        .cinit >RAM
        .far >RAM
  
}