?? 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 + -