vectors.asm

来自「利用ti54x系列dsp编解码dtmf源程序的第三版」· 汇编 代码 · 共 53 行

ASM
53
字号
**************************************************************
*   (C) COPYRIGHT TEXAS INSTRUMENTS, INC. 1996               *
**************************************************************
*   Program Name:     DTMF tone decoder                      *
*   File Name:        vectors.asm                            *
*   File Description: interrupt vector table                 *
*                                                            *
*   Author:   Gunter Schmer                                  *
*   Date:     03/24/97                                       *
*   Revision: 3.0                                            *
*   Latest working date: 03/24/97                            *
**************************************************************

******************************************
*       Interrupt Vectors
******************************************
	.global	_c_int00
	.global	_c_int19,_c_int20,_c_int21,_c_int22,_c_int23

	.sect	"vectors"

	b	_c_int00	;reset vector
	nop
	nop

	.space	18*4*16

TINT	retf			;b	_c_int19
	nop
	nop
	nop

RINT0	retf			;b	_c_int20
	nop
	nop
	nop

XINT0	retf			;b	_c_int21
	nop
	nop
	nop

RINT1	b	_c_int22
	nop
	nop

XINT1	retf			;b	_c_int23
	nop
	nop
	nop

	.end

⌨️ 快捷键说明

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