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

PFS122-1J16A 参数 Datasheet PDF下载

PFS122-1J16A图片预览
型号: PFS122-1J16A
PDF下载: 下载PDF文件 查看货源
内容描述: [8bit MTP Type MCU with 12-bit R-Type ADC]
分类和应用:
文件页数/大小: 93 页 / 1946 K
品牌: PADAUK [ PADAUK Technology ]
 浏览型号PFS122-1J16A的Datasheet PDF文件第79页浏览型号PFS122-1J16A的Datasheet PDF文件第80页浏览型号PFS122-1J16A的Datasheet PDF文件第81页浏览型号PFS122-1J16A的Datasheet PDF文件第82页浏览型号PFS122-1J16A的Datasheet PDF文件第84页浏览型号PFS122-1J16A的Datasheet PDF文件第85页浏览型号PFS122-1J16A的Datasheet PDF文件第86页浏览型号PFS122-1J16A的Datasheet PDF文件第87页  
PFS122  
8bit MTP MCU with 12-bit R-Type ADC  
7.6. Conditional Operation Instructions  
ceqsn a, I  
Compare ACC with immediate data and skip next instruction if both are equal.  
Flag will be changed like as (a ← a – I)  
Example: ceqsn  
a, 0x55 ;  
MEM ;  
error ;  
inc  
goto  
Result: If a=0x55, then “goto error”; otherwise, “inc MEM”.  
Affected flags: YZ YC YAC YOV  
Compare ACC with memory and skip next instruction if both are equal.  
Flag will be changed like as (a ← a - M)  
ceqsn a, M  
Example: ceqsn  
a, MEM;  
Result: If a=MEM, skip next instruction  
Affected flags: YZ YC YAC YOV  
cneqsn a, M  
Compare ACC with memory and skip next instruction if both are not equal.  
Flag will be changed like as (a ← a - M)  
Example: cneqsn  
a, MEM;  
Result: If a≠MEM, skip next instruction  
Affected flags: YZ YC YAC YOV  
cneqsn a, I  
Compare ACC with immediate data and skip next instruction if both are no equal.  
Flag will be changed like as (a ← a - I)  
Example: cneqsn  
a,0x55 ;  
MEM ;  
error ;  
inc  
goto  
Result: If a≠0x55, then “goto error”; Otherwise, “inc MEM”.  
Affected flags: YZ YC YAC YOV  
Check IO bit and skip next instruction if it’s low  
t0sn IO.n  
t1sn IO.n  
t0sn M.n  
t1sn M.n  
Example: t0sn  
pa.5;  
Result: If bit 5 of port A is low, skip next instruction  
Affected flags: NZ NC NAC NOV  
Check IO bit and skip next instruction if it’s high  
Example: t1sn  
pa.5 ;  
Result: If bit 5 of port A is high, skip next instruction  
Affected flags: NZ NC NAC NOV  
Check memory bit and skip next instruction if it’s low  
Example: t0sn MEM.5 ;  
Result: If bit 5 of MEM is low, then skip next instruction  
Affected flags: NZ NC NAC NOV  
Check memory bit and skip next instruction if it’s high  
EX: t1sn MEM.5 ;  
Result: If bit 5 of MEM is high, then skip next instruction  
Affected flags: NZ NC NAC NOV  
Increment ACC and skip next instruction if ACC is zero  
izsn  
a
Example: izsn  
Result:  
a;  
a
a + 1,skip next instruction if a = 0  
Affected flags: YZ YC YAC YOV  
©Copyright 2020, PADAUK Technology Co. Ltd  
Page 83 of 93  
PDK-DS-PFS122-EN_V000-May 28, 2020  
 
 复制成功!