cf_linker.cmd
来自「通过TMS320VC5402DSP芯片读写CF卡的源程序」· CMD 代码 · 共 31 行
CMD
31 行
/**********************************************************************
* This linker file is specifically for the C5416
* Author: Miguel Hernandez IV
* Filename: cf_linker.cmd
* Date: 07-30-01
**********************************************************************/
/* -c -heap 600 -m cf.map -o cf.out -stack 500 -x */
MEMORY
{
PAGE 0: /* Program memory */
DARAM: org = 00100h, len = 00300h
VECS: org = 03000h, len = 00080h
PAGE 1: /* Data memory */
DARAM: org = 00600h, len = 01000h
}
SECTIONS
{
.text :> DARAM PAGE 0
.data :> DARAM PAGE 1
.cinit :> DARAM PAGE 0
.const :> DARAM PAGE 1
.switch :> DARAM PAGE 0
.bss :> DARAM PAGE 1
.stack :> DARAM PAGE 1
.sysmem :> DARAM PAGE 1
.cio :> DARAM PAGE 1
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?