⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vectors.asm

📁 利用ti54x系列dsp编解码dtmf源程序的第三版
💻 ASM
字号:
**************************************************************
*   (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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -