SN8P1829
8-Bit MCU build-in 12-bit ADC + PGIA + Charge-pump Reg 128 dots LCD driver
SONiX TECHNOLOGY CO., LTD
Page 14
Version 1.0
USER RESET VECTOR ADDRESS (0000H)
A 1-word vector address area is used to execute system reset. After power-on reset or watchdog timer overflow reset,
chip restarts the program from address 0000h and all system registers will be set as default values. The following
example shows the way to define the reset vector in the program memory.
Example: After power on reset, external reset active or reset by watchdog timer overflow.
ORG
0
;
0000H
JMP
START
; Jump to user program address.
.
; 0004H ~ 0007H are reserved
ORG
10H
START:
; 0010H, The head of user program.
.
; User program
.
.
.
ENDP
; End of program
INTERRUPT VECTOR ADDRESS (0008H)
A 1-word vector address area is used to execute interrupt request. If any interrupt service is executed, the program
counter (PC) value is stored in stack buffer and points to 0008h of program memory to execute the vectored interrupt.
Users have to define the interrupt vector. The following example shows the way to define the interrupt vector in the
program memory.
Example 1: This demo program includes interrupt service routine and the user program is behind the
interrupt service routine.
ORG
0
;
0000H
JMP
START
; Jump to user program address.
.
; 0001H ~ 0007H are reserved
ORG
8
; Interrupt service routine
B0XCH A,
ACCBUF
; B0XCH doesn’t change C, Z flag
PUSH
; Push 80H ~ 87H system registers
.
.
.
POP
; Pop 80H ~ 87H system registers
B0XCH A,
ACCBUF
RETI
; End of interrupt service routine
START:
; The head of user program.
.
; User program
.
.
.
JMP
START
; End of user program
ENDP
; End of program