TI 6000系列DSP cmd文件怎么编写?
/*
* Copyright (C) 2004 SEED Incorporated
* All Rights Reserved
*/
/*
*---------timer1.cmd---------
*
*/
-l.\lib\cslDM642.lib
-l.\lib\rts6400.lib
-l.\lib\img64x.lib
MEMORY
{
L2 : o = 00000000h l = 00040000h /* all SRAM */
CE01: o = 80000000h l = 00100000h /* external memory */
CE02: o = 80100000h l = 00f000000h /* external memory */
}
SECTIONS
{
.cinit > L2
.text > L2
.stack > L2
.bss > L2
.const > L2
.data > L2
.far > L2
.switch > L2
.sysmem > L2
.tables > L2
.cio > L2
.capChaAYSpace> CE01
.capChaACbSpace> CE01
.capChaACrSpace> CE01
.disChaAYSpace> CE02
.disChaACbSpace> CE02
.disChaACrSpace> CE02
.external > CE02
}
希望高手们讲解,我要添加CE03怎么添加? |