C6713dsk.cmd
上传用户:bossps2lzz
上传日期:2022-07-07
资源大小:522k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*C6713dsk.cmd  Linker command file*/
  2. MEMORY
  3. {
  4.   IVECS:    org=0h,   len=0x220
  5.   IRAM: org=0x00000220, len=0x0002FDE0 /*internal memory*/
  6.   SDRAM: org=0x80000000, len=0x00100000 /*external memory*/
  7.   FLASH: org=0x90000000, len=0x00020000 /*flash memory*/                    
  8. }
  9. SECTIONS
  10. {
  11.   .EXTRAM :> SDRAM
  12.   .vectors :> IVECS /*in vector file*/
  13.   .text    :> IRAM /*Created by C Compiler*/
  14.   .bss     :> IRAM
  15.   .cinit   :> IRAM
  16.   .stack   :> IRAM
  17.   .sysmem  :> IRAM
  18.   .const   :> IRAM
  19.   .switch  :> IRAM
  20.   .far     :> IRAM
  21.   .cio     :> IRAM
  22.   .csldata :> IRAM
  23. }