⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dsk6713.cmd

📁 Communication System Design Using DSP Algorithms with Lab Expers for the TMS320C6713 DSK - S. Trette
💻 CMD
字号:
/**************************************************************/
/*  File dsk6713.cmd                                          */
/*    This linker command file can be used as the starting    */
/*  point for linking programs for the TMS320C6713 DSK.       */
/*                                                            */
/*  This CMD file assumes everything fits into internal RAM.  */
/*  If that's not true, map some sections to the external     */
/*  SDRAM.                                                    */
/**************************************************************/

-c
-heap  0x1000
-stack 0x400
-lrts6700.lib
-lcsl6713.lib

MEMORY
{
  IRAM  : origin = 0x0,        len = 0x40000    /* 256 Kbytes */
  SDRAM : origin = 0x80000000, len = 0x1000000  /* 16 Mbytes SDRAM */
  FLASH : origin = 0x90000000, len = 0x40000    /* 256 Kbytes */
}

SECTIONS
{
  .vec:     load = 0x00000000 /* Interrupt vectors included */
                              /* by using intr_reset()  */ 
  .text:    load = IRAM /* Executable code */ 
  .const:   load = IRAM /* Initialized constants */
  .bss:     load = IRAM /* Global and static variables */
  .data:    load = IRAM /* Data from .asm programs */
  .cinit:   load = IRAM /* Tables for initializing */
                                /* variables and constants */
  .stack:   load = IRAM /* Stack for local variables */
  .far:     load = IRAM /* Global and static variables */
                                /* declared far */
  .sysmem:  load = IRAM /* Used by malloc, etc. (heap) */
  .cio:     load = IRAM /* Used for C I/O functions */
  .csldata  load = IRAM
  .switch   load = IRAM
}  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -