【笔记】关于DSP连接CMD文件及连接存储块的理解

1、块的定义

2、complier section names

3、将块放入存储器

4、CMD文件的编写

      

 

代码
//Linker Command File

SECTIONS
{
   .text:
> FLASH PAGE = 0
   .ebss:
> M0SARAM PAGE = 1
   .cinit:
> FLASH PAGE = 0
   .stack:
> M1SARAM PAGE = 1
}

MEMORY
{
   PAGE 
0/* Program Memory */
   FLASH: origin 
= 0x3F0000, length = 0x8000
   PAGE 
1/* Data Memory */
   M0SARAM: origin 
= 0x000000, length = 0x400
   M1SARAM: origin 
= 0x000400, length = 0x400
}

 

 

5、在TMS320F28027中的链接地址

posted on 2010-03-04 20:56  OneSeven  阅读(651)  评论(0编辑  收藏  举报