?? flash.cmd
字號:
MEMORY
{
PAGE 0: /* program space */
VECS: origin = 0x0080, length = 0x0080 /* 128bytes vector table space */
PROG: origin = 0x0120, length = 0x300 /* 8K program memory space */
PAGE 1: /* data space */
SCRA: origin = 0x0100, length = 0x0020 /* scratch pad mem space */
STCK: origin = 0x420, length = 0x400 /* 1K words for stack */
DAT1: origin = 0x820, length = 0x080 /* 256 words for sys data */
DAT2: origin = 0x8a0, length = 0x1871 /* 12K words for appl data */
CINIT: origin=0x2172,length=0x1871
}
SECTIONS
{
.cinit : {} > CINIT PAGE 1
.vectors : {} > VECS PAGE 0 /* interrupt vector table */
.text : {} > PROG PAGE 0 /* program code */
.data : {} > PROG PAGE 0 /* initialized data */
.coeffs : {} > PROG PAGE 0 /* initialized parameters */
.stack : {} > STCK PAGE 1 /* software stack section */
.variable : {} > DAT1 PAGE 1 /* uninitialized vars for DSP&AIC10 */
.bss : {} > DAT2 PAGE 1 /* uninitialized vars for applications */
.const : {} > PROG PAGE 0
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -