📄 vc5402.cmd
字号:
/***********************************************************************
** Memory Map and Section Definition
***********************************************************************/
MEMORY
{
PAGE 0: /* program space */
VECS : origin = 0x3F80, length = 0x80 /* 128bytes vector table space */
PROG : origin = 0x2300, length = 0x1c00 /* 8K program memory space */
PAGE 1: /* data space */
S_RAM : origin = 0x0080, length = 0x020 /* scratch pad mem space */
ON_DRAM : origin = 0x0a0, length = 0x80
STCK : origin = 0x120, length = 0x21e0 /* 1K words for stack */
DAT1 : origin = 0x3f00, length = 0x80 /* 256 words for sys data */
DAT2 : origin = 0x4000, length = 0x2c00 /* 12K words for appl data */
}
SECTIONS
{
.vectors : {} > VECS PAGE 0 /* interrupt vector table */
.text : {} > PROG PAGE 0 /* program code */
.data : {} > STCK PAGE 1 /* initialized data */
.stack : {} > STCK PAGE 1 /* software stack section */
.variable : {} > STCK PAGE 1 /* uninitialized vars for DSP&AIC10 */
.bss : {} > STCK PAGE 1 /* uninitialized vars for applications */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -