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

PIC10F204T-I/OT 参数 Datasheet PDF下载

PIC10F204T-I/OT图片预览
型号: PIC10F204T-I/OT
PDF下载: 下载PDF文件 查看货源
内容描述: 6引脚8位闪存微控制器 [6-Pin, 8-Bit Flash Microcontrollers]
分类和应用: 闪存微控制器和处理器外围集成电路光电二极管时钟
文件页数/大小: 96 页 / 1447 K
品牌: MICROCHIP [ MICROCHIP ]
 浏览型号PIC10F204T-I/OT的Datasheet PDF文件第51页浏览型号PIC10F204T-I/OT的Datasheet PDF文件第52页浏览型号PIC10F204T-I/OT的Datasheet PDF文件第53页浏览型号PIC10F204T-I/OT的Datasheet PDF文件第54页浏览型号PIC10F204T-I/OT的Datasheet PDF文件第56页浏览型号PIC10F204T-I/OT的Datasheet PDF文件第57页浏览型号PIC10F204T-I/OT的Datasheet PDF文件第58页浏览型号PIC10F204T-I/OT的Datasheet PDF文件第59页  
PIC10F200/202/204/206  
ADDWF  
Add W and f  
BCF  
Bit Clear f  
Syntax:  
[ label ] ADDWF f,d  
Syntax:  
[ label ] BCF f,b  
Operands:  
0 f 31  
d ∈ [0,1]  
Operands:  
0 f 31  
0 b 7  
Operation:  
(W) + (f) (dest)  
Operation:  
0 (f<b>)  
Status Affected: C, DC, Z  
Status Affected: None  
Description:  
Add the contents of the W register  
Description:  
Bit ‘b’ in register ‘f’ is cleared.  
and register ‘f’. If ‘d’ is ‘0’, the result  
is stored in the W register. If ‘d’ is  
1’, the result is stored back in  
register ‘f’.  
ANDLW  
AND literal with W  
BSF  
Bit Set f  
Syntax:  
[ label ] ANDLW  
0 k 255  
k
Syntax:  
[ label ] BSF f,b  
Operands:  
Operation:  
Operands:  
0 f 31  
0 b 7  
(W).AND. (k) (W)  
Operation:  
1 (f<b>)  
Status Affected: Z  
Status Affected: None  
Description:  
The contents of the W register are  
AND’ed with the eight-bit literal ‘k’.  
The result is placed in the W  
register.  
Description: Bit ‘b’ in register ‘f’ is set.  
BTFSC  
Bit Test f, Skip if Clear  
ANDWF  
AND W with f  
Syntax:  
[ label ] BTFSC f,b  
Syntax:  
[ label ] ANDWF f,d  
Operands:  
0 f 31  
0 b 7  
Operands:  
0 f 31  
d [0,1]  
Operation:  
skip if (f<b>) = 0  
Operation:  
(W) .AND. (f) (dest)  
Status Affected: None  
Status Affected: Z  
Description: If bit ‘b’ in register ‘f’ is ‘0’, then the  
Description: The contents of the W register are  
next instruction is skipped.  
AND’ed with register ‘f’. If ‘d’ is ‘0’,  
the result is stored in the W register.  
If ‘d’ is ‘1’, the result is stored back  
in register ‘f’.  
If bit ‘b’ is ‘0’, then the next instruc-  
tion fetched during the current  
instruction execution is discarded,  
and a NOPis executed instead,  
making this a two-cycle instruction.  
© 2007 Microchip Technology Inc.  
DS41239D-page 53