
S1C88348/317/316/308 TECHNICAL SOFTWARE
EPSON
II-49
9 SERIAL INTERFACE 2 (ASYNCHRONOUS INTERFACE)
Source List
Asynchronous serial interface
external
osc1toosc3,osc3toosc1
external
vdd_ngf
public
async_init,asyncrv,asynctr
public
asyncerr_intr,asyncrv_intr,asynctr_intr
public
receive_buffer,trans_buffer,receive_flag,trans_flag
public
error_flag,bps_data
;
asyncerr_vectorequ
000010h
;async error interrupt vector offset
asyncrv_vector equ
000012h
;async receive interrupt vector offset
asynctr_vector equ
000014h
;async trans interrupt vector offset
async
equ
003000h
;program start address offset
br_io
equ
0ffh
;base reg. address (set i/o area)
mode
equ
00ff02h
;mode control reg.
ioc1
equ
00ff61h
;p1x i/o control reg.
p1d
equ
00ff63h
;p1x port data
smd
equ
00ff48h
;serial interface mode set reg.
ser
equ
00ff49h
;serial interface error and trriger reg
trxd
equ
00ff4ah
;trans/recive data reg.
pt_mode0
equ
00ff30h
;programmable timer mode set reg. 0
pt_mode2
equ
00ff32h
;programmable timer mode set reg. 2
rld1
equ
00ff34h
;programmable timer 1 reload data
intr_pr0
equ
00ff20h
;interrupt priority reg. 0
intr_pr1
equ
00ff21h
;interrupt priority reg. 1
intr_en1
equ
00ff23h
;interrupt enable reg. 1
intr_fac1
equ
00ff25h
;interrupt factor reg. 1
;
data
receive_buffer:db
[256]
;async receive bufffer
trans_buffer:
db
[256]
;async trans buffer
error_flag:
db
[1]
;async error flag
receive_flag:
db
[1]
;trans complete flag
trans_flag:
db
[1]
;receive complete flag
code
Vector address setting for serial interface interrupt
intr_vectors:
;
org
intr_vectors+asyncerr_vector
dw
asyncerr_intr
;async error interrupt
;
org
intr_vectors+asyncrv_vector
dw
asyncrv_intr
;async receive interrupt
;
org
intr_vectors+asynctr_vector
dw
asynctr_intr
;async trans interrupt
;
(1) Initialization for asynchronous serial interface (8-bit mode)
org
intr_vectors+async
bps_data:
db
0fh
;baud rate(osc3*1/1 9600bps:4.9152mhz)
;************************************************************************
;*
*
;*
async 8-bit mode initialize (p13 and 12 = hand shake:not use)
*
;*
*
;************************************************************************
;*** initialize routine
async_init:
;p17-14=programmable output,p13-12=hand shake,p11-10=async terminal
ld
br,#br_io
;set br reg. address to 0ffxxh
ld
[br:low p1d],#11110110b
;sout="h" and no hand shake
ld
[br:low ioc1],#11110110b
ld
[br:low ser],#01110000b
;rxen=dis.txen=dis.
;serial mode:even parity,clock=timer 1,async 8-bit mode and serial i/o select
ld
[br:low smd],#01011111b
;set serial interface mode
;pt:timer 8bit*2,pulse output=timer 1,pulse output=dis.,clock (timer0&1=fosc3)
ld
[br:low pt_mode0],#00001011b
ld
a,[loc bps_data]
ld
[br:low rld1],a
;set reload data reg.
ld
a,[br:low intr_pr0]
;interrupt priority reg.
and
a,#11001111b
or
a,#00100000b
ld
[br:low intr_pr0],a
;set psif=/irq2
ld
a,[br:low intr_pr1]
;interrupt priority reg.
(1)