vector.asm

来自「基于TMS320LF2407的LED大屏幕显示程序」· 汇编 代码 · 共 34 行

ASM
34
字号
;******************************************************************
; File Name:	vector.h
; Interrupt Vector declarations
; This section contains the vecors fur various interrupt in			
; the '240x. Unused interrupts are shown to branch to a "phantom" 
; interrupt service routine which disables the watchdog and loops 
; on itself.Users should replace the lable PHANTOM with the lable 
; of their interrupt subroutines in case these interrupt are used.
;*****************************************************************

          
    ;.title  "vectors.asm" 
    .ref     _nothing,_c_int0,_sciint,_timer1,_timer2;_adint
    .sect    ".vectors"
reset:    b   _c_int0   
INT1:     b   _nothing
INT2:     b   _timer1  
INT3:     b   _timer2 
INT4:     b   _nothing  
INT5:     b   _sciint  
INT6:     b   _nothing;adint
TRAP:     b   _nothing
nmi:      b   _nothing      
	   b   _nothing    
	   b   _nothing    
	   b   _nothing    
	   b   _nothing    
	   b   _nothing    
	   b   _nothing    
	   b   _nothing    
	   b   _nothing    
pp:	   b   _nothing    
       b   _nothing  

⌨️ 快捷键说明

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