SN8P2977
8-Bit Micro-Controller with Regulator, PGIA, 24-bit ADC
SONiX TECHNOLOGY CO., LTD
Page 18
V1.7
2.1.2
RESET VECTOR (0000H)
A one-word vector address area is used to execute system reset.
Power On Reset
Watchdog Reset
After power on reset or watchdog timer overflow reset, then the chip will restart 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: Defining Reset Vector
ORG
0
; 0000H
JMP
START
; Jump to user program address.
…
ORG
10H
START:
; 0010H, The head of user program.
…
; User program
…
ENDP
; End of program