link.cmd

来自「该代码实现了 两次下载法在dspC6713平台上 烧写flash的操作过程」· CMD 代码 · 共 41 行

CMD
41
字号
/****************************************************************************/
/*  lnk.cmd   v4.20                                                         */
/*  Copyright (c) 1996-2001  Texas Instruments Incorporated                 */
/****************************************************************************/
-c
-e    c_int00
-heap  0x2000
-stack 0x4000
/****************************************************************************/
/*  Specify the Input Files                                                 */
/****************************************************************************/


/****************************************************************************/
/*  Specify the Memory Configuration                                                         */
/*  Memory Map 1 - the default                                               */
/****************************************************************************/
MEMORY
{
       INRAM: origin = 0x00002000,  len = 0x0010000
 
} 
/****************************************************************************/
/*  Specify the Output Files                                                 */
/****************************************************************************/
SECTIONS
{
/*    .vector     >       INRAM*/
    .text       >       INRAM
    .cinit      >       INRAM    
    .stack      >       INRAM
    .bss        >       INRAM

    .cio        >       INRAM
    .const      >       INRAM
    .data       >       INRAM
    .switch     >       INRAM
    .sysmem     >       INRAM
    .far        >       INRAM
}

⌨️ 快捷键说明

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