uarttest.cmd

来自「6711开发板源程序」· CMD 代码 · 共 40 行

CMD
40
字号
/*
 *  Copyright 1998 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 ========
 *
 */
-heap  0x1000
-stack 0x1000
-u _boot
-c
-lrts6201.lib
MEMORY
{
    BOOT_RAM:   o = 00000000h   l = 00000800h   
    IRAM:       o = 00000800h   l = 0000e000h   
    CE0:        o = 80000000h   l = 01000000h 
}

SECTIONS
{
    .boot_load  >       BOOT_RAM  fill = 0
    .text       >       IRAM      fill = 0
    .stack      >       IRAM      fill = 0
    .bss        >       IRAM      fill = 0
    .cinit      >       IRAM      fill = 0
    .const      >       IRAM      fill = 0
    .data       >       IRAM       fill = 0
    .far        >       IRAM       fill = 0
    .switch     >       IRAM      fill = 0
    .sysmem     >       IRAM      fill = 0
    .tables     >       IRAM      fill = 0
    .cio        >       IRAM      fill = 0
}                             

 

⌨️ 快捷键说明

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