fft.cmd

来自「TMS320LF2407 教程 例子 英文 TI」· CMD 代码 · 共 45 行

CMD
45
字号
/*
 *   Spectrum Digital Test code
 *   Copyright (c) 1997.
 *   Spectrum Digital, Inc
 *   ALL RIGHTS RESERVED
*/

/*
 * The memory mapping in this file should match the mapping in the
 * EMUINIT.CMD file in the load directory
 */

/* Change template.out and template.map to name of project */

                               /* linker commands */
-c			       /* ROM autoinitialization */
-x                             /* force rereading libraries */
-o fft.out 	               /* output file */
-m fft.map 	               /* map file */

 
                                       /* specify memory map */
MEMORY
{
  PAGE 0 :                                         /* program memory */
          VECS: origin = 00000h, length = 0003Fh 
          CODE: origin = 00040h, length = 007FFh
  PAGE 1 :                                         /* data memory */
          Ext_Ram : origin = 08000h, length = 700h
}

                                       /* specify sections */
SECTIONS
{
  vectors    :	  > VECS PAGE = 0
  .text      :    > CODE PAGE = 0
  .switch    :    > CODE PAGE = 0
  .data      :    > Ext_Ram PAGE = 1
  .bss       :    > Ext_Ram PAGE = 1
  .heap      :    > Ext_Ram PAGE = 1
  .stack     :    > Ext_Ram PAGE = 1 
  .sysmem    :    > Ext_Ram PAGE = 1
}

⌨️ 快捷键说明

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