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.

TMS320F2812: CMD文件里拆分多个段怎么编码

Part Number: TMS320F2812

假设PAGE0有2个RAML1,RAML2。想将 .text : > RAML1,  PAGE = 0  段里的内容拆分出来,

更改一个.obj书写方式是:

.text1     : {t1.obj(.text)}> RAML2, PAGE = 0

其他的继续放到RAML1:.text : {*(.text)}> RAML1, PAGE = 0

问题:如果有多个.obj需要拆出来到RAML2,怎样编码?

通过:.text1     : {t1.obj(.text)}> RAML2, PAGE = 0

.text2    : {t2.obj(.text)}> RAML2, PAGE = 0

.text3     : {t3.obj(.text)}> RAML2, PAGE = 0

.text : {*(.text)}> RAML1, PAGE = 0是可以实现t1,t2,t3从text的RAML1分配到RAML2,如果想写到一行去 该怎么弄?(就是写一个 .text1 :{ }>RAML2,PAGE=0,括号里怎么写)