lab4c2.cmd
来自「一些在CCS上可以运行的初级DSP汇编程序」· CMD 代码 · 共 26 行
CMD
26 行
vectors.obj
lab4c2.obj
-o lab4c2.out
-m lab4c2.map
-e start
MEMORY
{
PAGE 0:
EPROM : org=0E000h,len=1000h
VECS : org=0FF80h,len=0080h
PAGE 1:
SPRAM : org=0060h,len=0020h
DARAM : org=0080h,len=1380h
}
SECTIONS
{
.text :>EPROM PAGE 0
.bss :>SPRAM PAGE 1
.data :>EPROM PAGE 0
.vectors : >VECS PAGE 0
STACK :>DARAM PAGE 1
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?