📄 vector.asm
字号:
;**********************************************************************
;* Filename: vector.asm *
;* *
;* Author: Aming, Maglev Reserch Center of NUDT. *
;* *
;* Last Modified: 06/02/04 *
;* *
;* Description: Interrupt vector of TMS320LF2407A DSP. *
;**********************************************************************
.sect ".vectors"
.ref _c_int0 ; C entry point
.ref _int1
.ref _int2
.ref _int3
.ref _int4
.ref _int5
.ref _int6
.ref _phantom ; Phantom Interrupt Service Routine
;.align 0x00 ; must be aligned on page boundary
RSVECT: B _c_int0 ; Reset Vector
INT1: B _int1 ; Interrupt Level 1
INT2: B _int2 ; Interrupt Level 2
INT3: B _int3 ; Interrupt Level 3
INT4: B _int4 ; Interrupt Level 4
INT5: B _int5 ; Interrupt Level 5
INT6: B _int6 ; Interrupt Level 6
RESERVED: B _phantom ; Reserved
SW_INT8: B _phantom ; User S/W Interrupt
SW_INT9: B _phantom ; User S/W Interrupt
SW_INT10: B _phantom ; User S/W Interrupt
SW_INT11: B _phantom ; User S/W Interrupt
SW_INT12: B _phantom ; User S/W Interrupt
SW_INT13: B _phantom ; User S/W Interrupt
SW_INT14: B _phantom ; User S/W Interrupt
SW_INT15: B _phantom ; User S/W Interrupt
SW_INT16: B _phantom ; User S/W Interrupt
TRAP: B _phantom ; Trap vector
NMINT: B _phantom ; Non-maskable Interrupt
EMU_TRAP: B _phantom ; Emulator Trap
SW_INT20: B _phantom ; User S/W Interrupt
SW_INT21: B _phantom ; User S/W Interrupt
SW_INT22: B _phantom ; User S/W Interrupt
SW_INT23: B _phantom ; User S/W Interrupt
SW_INT24: B _phantom ; User S/W Interrupt
SW_INT25: B _phantom ; User S/W Interrupt
SW_INT26: B _phantom ; User S/W Interrupt
SW_INT27: B _phantom ; User S/W Interrupt
SW_INT28: B _phantom ; User S/W Interrupt
SW_INT29: B _phantom ; User S/W Interrupt
SW_INT30: B _phantom ; User S/W Interrupt
SW_INT31: B _phantom ; User S/W Interrupt
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -