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

📄 funcappro.cmd

📁 CHP 3 - Real-Time Digital Signal Processing: Implementations and Applications, Second Edition by Sen
💻 CMD
字号:
/* 
//  Project: Experiment 3.6.5.3 Function Approximaiton - Chapter 3 
//  File name: funcAppro.cmd   
//
//  Description: This is experiment linker command file
//
//  For the book "Real Time Digital Signal Processing: 
//                Implementation and Application, 2nd Ed"
//                By Sen M. Kuo, Bob H. Lee, and Wenshun Tian
//                Publisher: John Wiley and Sons, Ltd
//
//  Tools used: CCS v.2.12.07
//              TMS320VC5510 DSK Rev-C
//
*/

-stack    0x2000      /* C55x DSP stack size */
-sysstack 0x1000      /* System stack size */


-c                    /* Use C linking conventions: auto-init vars at runtime */

MEMORY
{
  PAGE 0:  /* ---- C55x Unified Memory Space ---- */
  VECS   (RIX) : origin = 0x000100, length = 0x000100  /* 256-byte vectors */
  DARAM  (RWIX): origin = 0x000200, length = 0x00fe00  /* Internal DARAM */
  SARAM  (RWIX): origin = 0x010000, length = 0x040000  /* Internal SARAM */  
  PAGE 2:  /* ---- C55x 64K-word I/O Memory Space -------- */
  IOPORT (RWI) : origin = 0x000000, length = 0x020000
}
 
SECTIONS
{
    vectors  > VECS     PAGE 0  /* Interrupt vectors          */
   .text     > SARAM    PAGE 0  /* Code                       */
   .data     > SARAM    PAGE 0  /* Initialized vars           */
   .bss      > DARAM    PAGE 0  /* Global & static vars       */
   .const    > DARAM    PAGE 0  /* Constant data              */
   .sysmem   > SARAM    PAGE 0  /* Dynamic memory (malloc)    */
   .stack    > SARAM    PAGE 0  /* Primary system stack       */
   .sysstack > SARAM    PAGE 0  /* Secondary system stack     */
   .cio      > SARAM    PAGE 0  /* C I/O buffers              */
   .switch   > SARAM    PAGE 0  /* Switch statement tables    */
   .cinit    > SARAM    PAGE 0  /* Auto-initialization tables */
   .pinit    > SARAM    PAGE 0  /* Initialization fn tables   */

   .ioport   > IOPORT   PAGE 2  /* Global & static IO vars    */
}

⌨️ 快捷键说明

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