vectors.asm
来自「教程《DSP 原理及其 C 编程开发技术》中的源代码」· 汇编 代码 · 共 45 行
ASM
45 行
*VECTORS.ASM provided by TI to set up interrupt vectors
*If ISR is used, put branch to it in appropriate vector location
* .ref ISR if interrupt-driven
.ref _c_int00
.sect "vectors"
RESET_RST:
mvkl .S2 _c_int00, B0
mvkh .S2 _c_int00, B0
B .S2 B0
NOP 5
NMI_RST: NOP 8
RESV1: NOP 8
RESV2: NOP 8
INT4: NOP 8
INT5: NOP 8
INT6: NOP 8
INT7: NOP 8
INT8: NOP 8
INT9: NOP 8
INT10: NOP 8
INT11: NOP 8
*for interrupt-driven,use b ISR with 7 NOPs
INT12: NOP 8
INT13: NOP 8
INT14: NOP 8
INT15: NOP 8
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?