interrupt.cmd
来自「1. 熟悉C5400的连接时的配置 2. 熟悉中断矢量表的意义及其作用 3. 学」· CMD 代码 · 共 24 行
CMD
24 行
/******************************************************************************
* SJTU DSP Tech. Center
*
* Description:
* Memory Allocation (TMS320C54x-ASM Source Code for Fixed Point Implementation)
******************************************************************************/
MEMORY
{
PAGE 0:
VECS: org=0x0080, len=0x0080
PROM: org=0x1000, len=0x1000 /* 4k words */
PAGE 1:
STACK: org=0x100, len=0x400 /* 1k words */
DARAM: org=0x2000, len=0x1000 /* 4k words */
}
SECTIONS
{ .text :> PROM PAGE 0
vectors :> VECS PAGE 0
.bss :> DARAM PAGE 1
.data :> DARAM PAGE 1
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?