hello.cmd
来自「适用于TI公司DM642的FFT例程 很好的资料」· CMD 代码 · 共 36 行
CMD
36 行
/*
* 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 ========
*
*/
-stack 0x4000
-heap 0x4000
MEMORY
{
IPRAM : origin = 0x80, len = 0x10000
IDRAM : origin = 0x80000000, len = 0x0400000
IDRAM1 : origin = 0x80400000, len = 0x0080000
}
SECTIONS
{
/* .vectors > IPRAM*/
.text > IPRAM
.bss > IDRAM
.cinit > IDRAM
.const > IDRAM
.far > IDRAM
.stack > IDRAM
.cio > IDRAM
.sysmem > IDRAM
H263VCBUF> IDRAM
.img > IDRAM1
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?