📄 ex7p2.cmd
字号:
/******************************************************************
* DSK5416 Command File for Example 7.2
*******************************************************************/
MEMORY
{
PAGE 0: /* Program space */
VECS : origin = 0x0080, length = 0x0080 /* Vector table */
PROG1 : origin = 0x1000, length = 0x1000 /* Pgm mem */
PROG2 : origin = 0x2000, length = 0x100 /* Pgm mem */
PAGE 1: /* Data space */
DMEM1 : origin = 0x0500, length = 0x0400 /* 1K data mem */
DMEM2 : origin = 0x0A00, length = 0x0400 /* 1K data mem */
}
SECTIONS
{
.vectors : {} > VECS PAGE 0 /* Int. Vector table */
.text : {} > PROG1 PAGE 0 /* Program code */
.FIRcoeff : {} > PROG2 PAGE 0 /* Filter coefficients */
.samples : {} > DMEM1 PAGE 1 /* Input samples */
.bss : {} > DMEM2 PAGE 1 /* Filtered samples */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -