vectors.asm

来自「DSP中实现的RS编码+MFSK调制的实现」· 汇编 代码 · 共 48 行

ASM
48
字号

	    .title    "vectors"        ;  show the title for the asm file
 

		.ref   _c_int00
		.ref   _timer0

		.sect  ".vectors"
		
rset	.ivec	_c_int00 
nmi		.ivec	no_isr
int0	.ivec	no_isr
int2	.ivec   no_isr
tint0	.ivec	_timer0   ;定时器0中断
;tint0	.ivec	no_isr
rint0	.ivec   no_isr   
rint1	.ivec	no_isr          ;mcbsp1接收中断
xint1	.ivec   no_isr          ;mcbsp1发送中断
usb		.ivec	no_isr
dmac1	.ivec	no_isr
dspint	.ivec	no_isr
int3	.ivec	no_isr
rint2	.ivec	no_isr           ;mcbsp2接收中断
 ;xint2	.ivec   _transmit_int2   ;mcbsp2发送中断
xint2	.ivec   no_isr   
dmac4	.ivec	no_isr
dmac5	.ivec	no_isr
int1	.ivec   no_isr
xint0	.ivec	no_isr           ;mcbsp0发送中断
dmac0	.ivec	no_isr
int4	.ivec	no_isr
dmac2	.ivec	no_isr
dmac3	.ivec	no_isr
tint1	.ivec   no_isr
iic		.ivec	no_isr
berr	.ivec	no_isr
dlog	.ivec	no_isr
rtos	.ivec	no_isr
sint27	.ivec	no_isr
sint28	.ivec	no_isr
sint29	.ivec	no_isr
sint30	.ivec	no_isr
sint21	.ivec	no_isr
 
no_isr:
        nop 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?