參數(shù)資料
型號: PIC16C54A
廠商: Microchip Technology Inc.
英文描述: EPROM/ROM-Based 8-Bit CMOS Microcontroller Series(每個I/O口有20mA吸收,25mA驅(qū)動,12個I/O,2.5V的微控制器)
中文描述: 存儲器/基于ROM的8位CMOS微控制器系列(每個的I / O口有20mA的吸收,25mA電流驅(qū)動,12個的I / O,為2.5V的微控制器)
文件頁數(shù): 49/220頁
文件大?。?/td> 2310K
代理商: PIC16C54A
第1頁第2頁第3頁第4頁第5頁第6頁第7頁第8頁第9頁第10頁第11頁第12頁第13頁第14頁第15頁第16頁第17頁第18頁第19頁第20頁第21頁第22頁第23頁第24頁第25頁第26頁第27頁第28頁第29頁第30頁第31頁第32頁第33頁第34頁第35頁第36頁第37頁第38頁第39頁第40頁第41頁第42頁第43頁第44頁第45頁第46頁第47頁第48頁當前第49頁第50頁第51頁第52頁第53頁第54頁第55頁第56頁第57頁第58頁第59頁第60頁第61頁第62頁第63頁第64頁第65頁第66頁第67頁第68頁第69頁第70頁第71頁第72頁第73頁第74頁第75頁第76頁第77頁第78頁第79頁第80頁第81頁第82頁第83頁第84頁第85頁第86頁第87頁第88頁第89頁第90頁第91頁第92頁第93頁第94頁第95頁第96頁第97頁第98頁第99頁第100頁第101頁第102頁第103頁第104頁第105頁第106頁第107頁第108頁第109頁第110頁第111頁第112頁第113頁第114頁第115頁第116頁第117頁第118頁第119頁第120頁第121頁第122頁第123頁第124頁第125頁第126頁第127頁第128頁第129頁第130頁第131頁第132頁第133頁第134頁第135頁第136頁第137頁第138頁第139頁第140頁第141頁第142頁第143頁第144頁第145頁第146頁第147頁第148頁第149頁第150頁第151頁第152頁第153頁第154頁第155頁第156頁第157頁第158頁第159頁第160頁第161頁第162頁第163頁第164頁第165頁第166頁第167頁第168頁第169頁第170頁第171頁第172頁第173頁第174頁第175頁第176頁第177頁第178頁第179頁第180頁第181頁第182頁第183頁第184頁第185頁第186頁第187頁第188頁第189頁第190頁第191頁第192頁第193頁第194頁第195頁第196頁第197頁第198頁第199頁第200頁第201頁第202頁第203頁第204頁第205頁第206頁第207頁第208頁第209頁第210頁第211頁第212頁第213頁第214頁第215頁第216頁第217頁第218頁第219頁第220頁
1997 Microchip Technology Inc.
Preliminary
DS30453A-page 49
PIC16C5X
INCF
Syntax:
Operands:
Increment f
[ label INCF f,d
0
f
31
d
[0,1]
(f) + 1
(dest)
Z
Operation:
Status Affected:
Encoding:
Description:
0010
10df
ffff
The contents of register 'f' are incre-
mented. If 'd' is 0 the result is placed in
the W register. If 'd' is 1 the result is
placed back in register 'f'.
1
1
Words:
Cycles:
Example:
Before Instruction
CNT
Z
After Instruction
CNT
Z
INCF
CNT,
1
=
=
0xFF
0
=
=
0x00
1
INCFSZ
Syntax:
Operands:
Increment f, Skip if 0
[ label INCFSZ f,d
0
f
31
d
[0,1]
(f) + 1
(dest), skip if result = 0
None
Operation:
Status Affected:
Encoding:
Description:
0011
11df
ffff
The contents of register 'f' are incre-
mented. If 'd' is 0 the result is placed in
the W register. If 'd' is 1 the result is
placed back in register 'f'.
If the result is 0, then the next instruc-
tion, which is already fetched, is dis-
carded and an NOP is executed
instead making it a two cycle instruc-
tion.
1
1(2)
Words:
Cycles:
Example:
HERE INCFSZ CNT, 1
GOTO LOOP
CONTINUE
Before Instruction
PC
=
address
(HERE)
After Instruction
CNT
=
CNT + 1;
if CNT
=
0,
PC
=
address
(CONTINUE)
;
if CNT
0,
PC
=
address
(HERE +1)
IORLW
Syntax:
Operands:
Operation:
Status Affected:
Encoding:
Description:
Inclusive OR literal with W
[ label IORLW k
0
k
255
(W) .OR. (k)
(W)
Z
1101
kkkk
kkkk
The contents of the W register are
OR’ed with the eight bit literal 'k'. The
result is placed in the W register.
1
1
Words:
Cycles:
Example:
Before Instruction
W
After Instruction
W
Z
IORLW
0x35
=
0x9A
=
=
0xBF
0
IORWF
Syntax:
Operands:
Inclusive OR W with f
[ label IORWF f,d
0
f
31
d
[0,1]
(W).OR. (f)
(dest)
Z
Operation:
Status Affected:
Encoding:
Description:
0001
00df
ffff
Inclusive OR the W register with regis-
ter 'f'. If 'd' is 0 the result is placed in
the W register. If 'd' is 1 the result is
placed back in register 'f'.
1
1
Words:
Cycles:
Example:
Before Instruction
RESULT =
W
After Instruction
RESULT =
W
Z
IORWF
RESULT, 0
0x13
0x91
=
0x13
0x93
0
=
=
相關(guān)PDF資料
PDF描述
PIC16C55 EPROM/ROM-Based 8-Bit CMOS Microcontroller Series(每個I/O口有20mA吸收,25mA驅(qū)動,20個I/O,2.5V的微控制器)
PIC16C55A EPROM/ROM-Based 8-Bit CMOS Microcontroller Series(每個I/O口有20mA吸收,25mA驅(qū)動,20個I/O,2.5V的微控制器)
PIC16C57 EPROM/ROM-Based 8-Bit CMOS Microcontroller Series(每個I/O有20mA吸收/25mA驅(qū)動,20I/O,2.5V的微控制器)
PIC16C57C EPROM/ROM-Based 8-Bit CMOS Microcontroller Series(每個I/O有20mA吸收/25mA驅(qū)動,20I/O,2.5V的微控制器)
PIC16C58A EPROM/ROM-Based 8-Bit CMOS Microcontroller Series(每個I/O有20mA吸收/25mA驅(qū)動,12個I/O,2.0V的微控制器)
相關(guān)代理商/技術(shù)參數(shù)
參數(shù)描述
PIC16C54A/JW 功能描述:8位微控制器 -MCU .75KB 25 RAM 12 I/O RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風格:SMD/SMT
PIC16C54A-04/P 功能描述:8位微控制器 -MCU .75KB 25 RAM 12 I/O 4MHz PDIP-18 RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風格:SMD/SMT
PIC16C54A-04/P 制造商:Microchip Technology Inc 功能描述:IC 8-BIT CMOS MCU
PIC16C54A-04/SO 功能描述:8位微控制器 -MCU .75KB 25 RAM 12 I/O 4MHz SOIC-18 RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風格:SMD/SMT
PIC16C54A-04/SO 制造商:Microchip Technology Inc 功能描述:8BIT CMOS MCU SMD 16C54 SOIC18