📄 vector.asm
字号:
;******************************************************************
; 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -