
S1C88348/317/316/308 TECHNICAL SOFTWARE
EPSON
II-103
17 INTERRUPT (EXCEPTION) PROCESSING
Source List
Interrupt (exception) processing
external
user_program
public
main,zero_div,watch_dog
public
pt1_intr,pt0_intr
public
k1x_intr,k0h_intr,k0l_intr
public
serr_intr,srv_intr,str_intr
public
sw100_intr,sw10_intr,sw1_intr
public
clock32_intr,clock8_intr,clock2_intr,clock1_intr
;
br_io
equ
0ffh
;base reg. address (set i/o area)
mcu
equ
00ff00h
;mcu mode system control reg.
spp
equ
00ff01h
;stack pointer page address
mode
equ
00ff02h
;mcu//mpu mode control address
sp_316
equ
00f800h
;e0c88316 stack top address
intr_pr0
equ
00ff20h
;interrupt priority reg. 0
intr_pr1
equ
00ff21h
;interrupt priority reg. 1
intr_en0
equ
00ff22h
;interrupt enable reg. 0
intr_en1
equ
00ff23h
;interrupt enable reg. 1
intr_fac0
equ
00ff24h
;interrupt factor reg. 0
intr_fac1
equ
00ff25h
;interrupt factor reg. 1
;
reserve
equ
000024h
;e0c88316 system reserve
soft_intr
ewu
000026h
;software interrupt vector
offset
equ
000100h
;program start address offset
code
Setting of interrupt vector address
intr_vectors:
;system interrupt vectors
dw
main
;reset vector
dw
zero_div
;zero divide
dw
watchdog
;watchdog timer(/nmi)
;e0c88316 peripheral interrupt vectors (irq levels can set by software)
dw
pt1_intr
;programmable timer 1 (/irq3)
dw
pt0_intr
;programmable timer 0 (/irq3)
dw
k1x_intr
;k1x input port
(/irq3)
dw
k0h_intr
;k07-04 input port
(/irq3)
dw
k0l_intr
;k03-00 input port
(/irq3)
dw
serr_intr
;serial error
(/irq2)
dw
srv_intr
;serial receive
(/irq2)
dw
str_intr
;serial transmission
(/irq2)
dw
sw100_intr
;stopwatch 100hz
(/irq1)
dw
sw10_intr
;stopwatch 10hz
(/irq1)
dw
sw1_intr
;stopwatch 1hz
(/irq1)
dw
clock32_intr
;clock timer 32hz
(/irq1)
dw
clock8_intr
;clock timer 8hz
(/irq1)
dw
clock2_intr
;clock timer 2hz
(/irq1)
dw
clock1_intr
;clock timer 1hz
(/irq1)
;e0c88316 system reserve
org
intr_vectors+reserve
;software intrrupt vectors (i.e bios handler and/or general purpose routine(s))
org
intr_vectors+soft_intr
;