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.

TMS320C6745 ROM Boot

Other Parts Discussed in Thread: TMS320C6745Hi!
I want to use internal ROM (TMS320C6745) for store my program. [DSPL2ROM o = 0x00700000 l = 0x00100000 /* 1MB L2 Internal ROM */ ]
I have to change SECTIONS in the file C6745.cmd ? How to do it ?
Boot.asm file is necessary in order to do it ?

SECTIONS
{
.text > SHDSPL2RAM
.stack > SHDSPL2RAM
.bss > SHDSPL2RAM
.cio > SHDSPL2RAM
.const > SHDSPL2RAM
.data > SHDSPL2RAM
.switch > SHDSPL2RAM
.sysmem > SHDSPL2RAM
.far > SHDSPL2RAM
.args > SHDSPL2RAM
.ppinfo > SHDSPL2RAM
.ppdata > SHDSPL2RAM

/* COFF sections */
.pinit > SHDSPL2RAM
.cinit > SHDSPL2RAM

/* EABI sections */
.binit > SHDSPL2RAM
.init_array > SHDSPL2RAM
.neardata > SHDSPL2RAM
.fardata > SHDSPL2RAM
.rodata > SHDSPL2RAM
.c6xabi.exidx > SHDSPL2RAM
.c6xabi.extab > SHDSPL2RAM
}