
S1C88348/317/316/308 TECHNICAL SOFTWARE
EPSON
II-19
5 INPUT PORTS (K PORTS)
Source List
(1)
(2)
Vector address setting for input port (K port) interrupt
intr_vectors:
;
org
intr_vectors+k1x_vector
dw
input_keyintr
;k1x interrupt processing routine
(1) Data reading from normal input port (K port)
org
intr_vectors+keyinput
;************************************************************************
;*
*
;*
k(input) port read (normal)
*
;*
a <- k0x(complementary)
*
;*
b <- k1x(complementary)
*
;*
*
;************************************************************************
input_normal:
ld
br,#br_io
;set br reg. address to 0ffxxh
ld
a,[br:low k0d]
;k07-00 port read
ld
b,[br:low k1d]
;k11-00 port read
ret
;
(2) Key scanning on 8 x 2 key matrix
;************************************************************************
;*
*
;*
k(input) port read (key scan)
*
;*
k07 k06 k05 k04 k03 k02 k01 k00(pull up)
*
;*
r00(n-ch. o.d)
*
;*
r01(n-ch. o.d)
*
;*
*
;*
key_data+0(r10) <- k07 k06 k05 k04 k03 k02 k01 k00
*
;*
key_data+1(r11) <- r07 k06 k05 k04 k03 k02 k01 k00
*
;*
*
;************************************************************************
input_keyscan:
ld
br,#br_io
;set br reg. address to 0ffxxh
and
[br:low r0d],#11111110b
;r00 key scan output
ld
a,[br:low k0d]
;k0x port read
ld
[lod key_data+0],a
;key_data save
carl
scan_delay
;key scan delay ***
and
[br:low r0d],#11111101b
;r01 key scan output
ld
a,[br:low k0d]
;k0x port read
ld
[lod key_data+1],a
;key_data save
carl
scan_delay
;key scan delay ***
ret
(3) Interrupt condition setting and interrupt processing for input port (K port)
;************************************************************************
;*
*
;*
k(input) port read (interrupt)
*
;*
k11,10 <- /irq3 falling edge ("h" - "l") interrupt
*
;*
*
;************************************************************************
input_keywait:
ld
br,#br_io
;set br reg. address to 0ffxxh
or
[br:low intr_pr1],#00000011b
;set pk11 and 10 to /irq3
ld
[br:low kcp1],#00000011b
;k11,10 falling edge (h -> l)
ld
[br:low sik1],#00000011b
;k11,10 interrupt enable
or
[br:low intr_en1],#00100000b
;ek1 (k11,10) interrupt en.
(3)