c6_2_2.cmd
来自「<DSP应用开发实用子程序>配套源代码」· CMD 代码 · 共 20 行
CMD
20 行
-e start
MEMORY {
PAGE 0:
vectorram: origin = 1C00h length = 0080h
textram: origin = 0100h length = 0F00h
PAGE 1:
bssram: origin = 5000h length = 1000h
stackram: origin = 1100h length = 0400h
constram: origin = 1500h length = 0100h
dataram: origin = 1600h length = 0100h
userram: origin = 1D00h length = 3000h
}
SECTIONS{
.text : > textram PAGE 0
.bss : > bssram PAGE 1
.stack : > stackram PAGE 1
.const : > constram PAGE 1
.data : > dataram PAGE 1
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?