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

📄 vectors.asm

📁 TLV2544-2548多通道12位串行A-D转换器的原理与应用
💻 ASM
字号:
*=============================================================================*
*All software and related documentation is provided "AS IS" and without 		*
*warranty or support of any kind and Texas Instruments expressly disclaims 	*
*all other warranties,express or implied, including, but not limited to, the  *
*implied warranties of merchantability and fitness for a particular purpose.  *
*Under no circumstances shall Texas Instruments be liable for any incidental, *
*special or consequential damages that result from the use or inability to 	*
*use the software or related documentation, even if Texas Instruments has 	   *
*been advised of the liability.															   *
*																									   *
*Unless otherwise stated, software written and copyrighted by Texas 			   *
*Instruments is distributed as "freeware". You may use and modify this 		   *
*software without any charge or restriction. You may distribute to others,	   *
*as long as the original author is acknowledged.										*
*=============================================================================*

********************************************************************
*Function:     None	                                               *
*file name:	vectors.asm											   *
*Description:  This file in used as Interrupt Vector Table. 	   *
*Inputs:   	None												   *
*Outputs:  	None	                                               *
*Returns: 		None											   *
* AUTHOR: 		AAP Application Group, L. Philipose, Dallas        *
*              CREATED 2000(C) BY TEXAS INSTRUMENTS INCORPORATED.  *
********************************************************************
	
	
	.global	_c_int00
	
	.sect	".vectors"
	
reset   bd		_c_int00
		nop
		nop
NMI		bd		NMI
		nop
		nop
SINT17	bd		SINT17
		nop
		nop
SINT18	bd		SINT18
		nop
		nop
SINT19	bd		SINT19
		nop
		nop
SINT20	bd		SINT20
		nop
		nop
SINT21	bd		SINT21
		nop
		nop
SINT22	bd		SINT22
		nop
		nop
SINT23	bd		SINT23
		nop
		nop
SINT24	bd		SINT24
		nop
		nop
SINT25	bd		SINT25
		nop
		nop
SINT26	bd		SINT26
		nop
		nop
SINT27	bd		SINT27
		nop
		nop
SINT28	bd		SINT28
		nop
		nop
SINT29	bd		SINT29
		nop
		nop
SINT30	bd		SINT30
		nop
		nop
INT0	bd		INT0
		nop
		nop
INT1	bd		INT1
		nop
		nop
INT2	bd		INT2   
		nop
		nop
TINT0	bd		TINT0
		nop
		nop
BRINT0	bd   	BRINT0
		nop
		nop
BXINT0  bd		BXINT0
		nop
		nop
TRINT	bd		TRINT
		nop
		nop
TXINT	bd		TXINT
		nop
		nop
INT3:	bd	    INT3
		nop
		nop
HPINT	bd		HPINT
		nop
		nop
BRINT1  bd		BRINT1
		nop
		nop
BXINT1 	bd		BXINT1
		nop
		nop

		.space  16*16	
TABLE_END
	.end

⌨️ 快捷键说明

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