c4_5_3.cmd
来自「包含了大量的DSP应用子程序」· CMD 代码 · 共 18 行
CMD
18 行
MEMORY {
PAGE 0: vectorram: origin = 1C00h length = 0080h
textram: origin = 1000h length = 0600h
PAGE 1: bssram: origin = 0400h length = 0100h
stackram: origin = 0500h length = 0400h
constram: origin = 0900h length = 0100h
userram: origin = 0A00h length = 0400h
}
SECTIONS
{
vectors: > vectorram PAGE 0
.text: > textram PAGE 0
.bss: > bssram PAGE 1
.stack: > stackram PAGE 1
.const: > constram PAGE 1
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?