欢迎访问ic37.com |
会员登录 免费注册
发布采购

SN8A1706A 参数 Datasheet PDF下载

SN8A1706A图片预览
型号: SN8A1706A
PDF下载: 下载PDF文件 查看货源
内容描述: 8位微控制器 [8-Bit Micro-Controller]
分类和应用: 微控制器
文件页数/大小: 145 页 / 774 K
品牌: SONIX [ SONIX TECHNOLOGY COMPANY ]
 浏览型号SN8A1706A的Datasheet PDF文件第90页浏览型号SN8A1706A的Datasheet PDF文件第91页浏览型号SN8A1706A的Datasheet PDF文件第92页浏览型号SN8A1706A的Datasheet PDF文件第93页浏览型号SN8A1706A的Datasheet PDF文件第95页浏览型号SN8A1706A的Datasheet PDF文件第96页浏览型号SN8A1706A的Datasheet PDF文件第97页浏览型号SN8A1706A的Datasheet PDF文件第98页  
SN8P1700  
8-bit micro-controller build-in 12-bit ADC  
Example: INT1 interrupt service routine.  
ORG  
JMP  
8
; Interrupt vector  
INT_SERVICE  
INT_SERVICE:  
B0XCH  
PUSH  
A, ACCBUF  
; B0XCH doesn’t change C, Z flag  
; Push  
B0BTS1  
JMP  
FP01IRQ  
EXIT_INT  
; Check P01IRQ  
; P01IRQ = 0, exit interrupt vector  
B0BCLR  
FP01IRQ  
; Reset P01IRQ  
.
.
.
.
; INT1 interrupt service routine  
EXIT_INT:  
POP  
; Pop  
B0XCH  
A, ACCBUF  
; Restore ACC value.  
RETI  
; Exit interrupt vector  
INT2 (P0.2) INTERRUPT OPERATION  
The INT2 is triggered by falling edge. When the INT2 trigger occurs, the P02IRQ will be set to “1” however the P02IEN  
is enable or disable. If the P02IEN = 1, the trigger event will make the P02IRQ to be “1” and the system enter interrupt  
vector. If the P02IEN = 0, the trigger event will make the P02IRQ to be “1” but the system will not enter interrupt vector.  
Users need to care for the operation under multi-interrupt situation.  
Example: INT2 interrupt request setup.  
B0BSET  
B0BCLR  
B0BSET  
FP02IEN  
FP02IRQ  
FGIE  
; Enable INT2 interrupt service  
; Clear INT2 interrupt request flag  
; Enable GIE  
Example: INT2 interrupt service routine.  
ORG  
JMP  
8
; Interrupt vector  
INT_SERVICE  
INT_SERVICE:  
B0XCH  
PUSH  
A, ACCBUF  
; B0XCH doesnt change C, Z flag  
; Push  
B0BTS1  
JMP  
FP02IRQ  
EXIT_INT  
; Check P02IRQ  
; P02IRQ = 0, exit interrupt vector  
B0BCLR  
FP02IRQ  
; Reset P02IRQ  
.
.
.
.
; INT2 interrupt service routine  
EXIT_INT:  
POP  
; Pop  
B0XCH  
A, ACCBUF  
; Restore ACC value.  
RETI  
; Exit interrupt vector  
SONiX TECHNOLOGY CO., LTD  
Page 94  
Revision 1.94  
 复制成功!