hello.cmd

来自「dsp5402的写flash程序」· CMD 代码 · 共 41 行

CMD
41
字号
/*
 *  Copyright 2001 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 */
/*
 *  ======== hello.cmd ========
 *
 */


MEMORY
{
    PAGE 0: EPROG:      origin = 0x100,        len = 0x2000
            VECT:       origin = 0xff80,        len = 0x80

    PAGE 1: 
            
            IDATA:      origin = 0x2100,        len = 0x1e00
/*            EDATA1:     origin = 0x9400,        len = 0x4c00*/
}

SECTIONS
{
    .vectors: {} > VECT PAGE 0

    .text:    {} > EPROG PAGE 0
    .cinit:   {} > EPROG PAGE 0

    .bss:     {} > IDATA PAGE 1
    .far:     {} > IDATA PAGE 1
    .const:   {} > IDATA PAGE 1
    .switch:  {} > IDATA PAGE 1

    .cio:     {} > IDATA PAGE 1

    .sysheap: {} > IDATA PAGE 1
    .stack:   {} > IDATA PAGE 1
}

⌨️ 快捷键说明

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