graph.cmd
来自「TMS320c6000系列DSP做图像处理的应用举例」· CMD 代码 · 共 47 行
CMD
47 行
/*
* 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 ========
*
*/
-w
-heap 0x1000
-stack 0x1000
-lrts6701.lib
-lmtv.lib
MEMORY
{
BOOT_RAM: o = 00000000h l = 00000c00h
VECT: o = 00000c00h l = 00000400h
IRAM: o = 00001000h l = 0000e000h
CE0: o = 80001000h l = 000ff000h
}
SECTIONS
{
.boot_load > BOOT_RAM
.vectors > VECT
.text1 > IRAM
.text2 > IRAM
.text3 > IRAM
.text4 > IRAM
.text > IRAM
.stack > IRAM
.bss > IRAM
.bss1 > CE0
.cinit > IRAM
.const > IRAM
.data > IRAM
.far > IRAM
.switch > IRAM
.sysmem > IRAM
.tables > IRAM
.cio > IRAM
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?