mycmd_c1.cmd

来自「用于TI公司的TMS320LF2407上的程序」· CMD 代码 · 共 35 行

CMD
35
字号
/*--------------------------------------------------------------------*/
/*  LINKER COMMAND FILE - MEMORY SPECIFICATION for the F2407          */
/*--------------------------------------------------------------------*/
-l rts2xx.lib

MEMORY
{
    PAGE 0 :   VECS   : origin =    0h , length =   040h   /* VECTORS */
	           PROG   : origin =   44h , length = 07FBCh   /* PROGRAM */

    PAGE 1 :   
               B2     : origin = 0060h , length =   020h   /* DARAM   */
               B01    : origin = 0200h , length =  0200h   /* DARAM   */
               SARAM  : origin = 0800h , length =  0800h   /* SARAM   */
               
}

/*--------------------------------------------------------------------*/
/* SECTIONS ALLOCATION                                                */
/*--------------------------------------------------------------------*/
SECTIONS
{
    .vectors : { } > VECS      PAGE 0   /* Interrupt vector table     */
    .text    : { } > PROG      PAGE 0   /* Code                       */
    .data    : { } > PROG      PAGE 0   /* Initialization data tables */
    .cinit   : { } > PROG      PAGE 0


    
    .bss     : { } > SARAM     PAGE 1
    .const   : { } > SARAM	PAGE 1
    .system  : { } > SARAM	PAGE 1 
    .stack	 : { } > B01       PAGE1
}

⌨️ 快捷键说明

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