参数资料
型号: PIC16F785T-I/SO
厂商: Microchip Technology
文件页数: 123/206页
文件大小: 0K
描述: IC PIC MCU FLASH 2KX14 20SOIC
产品培训模块: Asynchronous Stimulus
标准包装: 1,600
系列: PIC® 16F
核心处理器: PIC
芯体尺寸: 8-位
速度: 20MHz
外围设备: 欠压检测/复位,POR,PWM,WDT
输入/输出数: 17
程序存储器容量: 3.5KB(2K x 14)
程序存储器类型: 闪存
EEPROM 大小: 256 x 8
RAM 容量: 128 x 8
电压 - 电源 (Vcc/Vdd): 2 V ~ 5.5 V
数据转换器: A/D 14x10b
振荡器型: 内部
工作温度: -40°C ~ 85°C
封装/外壳: 20-SOIC(0.295",7.50mm 宽)
包装: 带卷 (TR)
配用: XLT20SO1-1-ND - SOCKET TRANS ICE 20DIP TO 20SOIC
AC162060-ND - HEADER INTRFC MPLAB ICD2 20PIN
AC164039-ND - MODULE SKT PROMATE II 20DIP/SOIC
第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页
2008 Microchip Technology Inc.
DS41249E-page 21
PIC16F785/HV785
2.3
PCL and PCLATH
The Program Counter (PC) specifies the address of the
instruction to fetch for execution. The program counter
is 13 bits wide. The low byte is called the PCL register.
The PCL register is readable and writable. The high
byte of the PC Register is called the PCH register. This
register contains PC<12:8> bits which are not directly
readable or writable. All updates to the PCH register
goes through the PCLATH register.
On any Reset, the PC is cleared. Figure 2-3 shows the
two situations for loading the PC. The upper example
of Figure 2-3 shows how the PC is loaded on a write to
PCL in the PCLATH Register
→ PCH. The lower exam-
ple of Figure 2-3 shows how the PC is loaded during a
CALL
or GOTO instruction in the PCLATH Register
PCH).
2.3.1
MODIFYING PCL
Executing any instruction with the PCL register as the
destination
simultaneously
causes
the
Program
Counter PC<12:8> bits (PCH) to be replaced by the
contents of the PCLATH register. This allows the entire
contents of the program counter to be changed by
writing the desired upper 5 bits to the PCLATH register.
When the lower 8 bits are written to the PCL register, all
13 bits of the program counter will change to the values
contained in the PCLATH register and those being
written to the PCL register.
A computed GOTO is accomplished by adding an offset
to the program counter (ADDWF PCL). Care should be
exercised when jumping into a look-up table or
program branch table (computed GOTO) by modifying
the PCL register. Assuming that PCLATH is set to the
table start address, if the table length is greater than
255 instructions or if the lower 8 bits of the memory
address rolls over from 0xFF to 0x00 in the middle of
the table, then PCLATH must be incremented for each
address rollover that occurs between the table
beginning and the target location within the table.
For more information refer to Application Note AN556,
“Implementing a Table Read” (DS00556).
2.3.2
PROGRAM MEMORY PAGING
The CALL and GOTO instructions provide 11 bits of
address to allow branching within any 2K program
memory page. When using a CALL or GOTO instruction,
the Most Significant bits of the address are provided by
PCLATH<4:3> (page select bits). When using a CALL
or GOTO instruction, the user must ensure that the page
select bits are programmed so that the desired destina-
tion program memory page is addressed. When the
CALL
instruction (or interrupt) is executed, the entire
13-bit PC return address is PUSHed onto the stack.
Therefore, manipulation of the PCLATH<4:3> bits are
not required for the RETURN or RETFIE instructions
(which POPs the address from the stack).
FIGURE 2-3:
LOADING OF PC IN
DIFFERENT SITUATIONS
2.3.3
STACK
The PIC16F785/HV785 family has an 8-level deep x
13-bit wide hardware stack (see Figure 2-1). The stack
space is not part of either program or data space and
the Stack Pointer is not readable or writable. The PC is
PUSHed onto the stack when a CALL instruction is
executed or an interrupt causes a branch. The stack is
POPed in the event of a RETURN, RETLW or RETFIE
instruction execution. PCLATH is not affected by a
PUSH or POP operation.
The stack operates as a circular buffer. This means that
after the stack has been PUSHed eight times, the ninth
PUSH overwrites the value that was stored from the
first PUSH. The tenth PUSH overwrites the second
PUSH (and so on).
Note 1: There are no Status bits to indicate stack
overflow or stack underflow conditions.
2: There are no instructions/mnemonics
called PUSH or POP. These are actions
that occur from the execution of the
CALL,
RETURN,
RETLW
and RETFIE
instructions
or
the
vectoring
to
an
interrupt address.
PC
12
8
7
0
5
PCLATH<4:0>
PCLATH
Instruction with
ALU result
GOTO, CALL
Opcode <10:0>
8
PC
12
11 10
0
11
PCLATH<4:3>
PCH
PCL
87
2
PCLATH
PCH
PCL
PCL as
Destination
相关PDF资料
PDF描述
V300A2C160B3 CONVERTER MOD DC/DC 2V 160W
PIC16C620A-40/P IC MCU OTP 512X14 COMP 18DIP
V300A2C160B2 CONVERTER MOD DC/DC 2V 160W
PIC16HV540-20I/SO IC MCU OTP 512X12 18SOIC
V150A28C400BG3 CONVERTER MOD DC/DC 28V 400W
相关代理商/技术参数
参数描述
PIC16F818-E/ML 功能描述:8位微控制器 -MCU 1.75KB 128RAM 16 I/O Ext Temp QFN28 RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT
PIC16F818-E/P 功能描述:8位微控制器 -MCU 1.75KB 128RAM 16 I/O Ext Temp PDIP18 RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT
PIC16F818-E/SO 功能描述:8位微控制器 -MCU 1.75KB 128RAM 16 I/O Ext Temp SOIC18 RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT
PIC16F818-E/SS 功能描述:8位微控制器 -MCU 1.75KB 128RAM 16 I/O Ext Temp SSOP20 RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT
PIC16F818-E/SS 制造商:Microchip Technology Inc 功能描述:IC 8BIT MCU PIC16F 20MHz SSOP-20 制造商:Microchip Technology Inc 功能描述:IC, 8BIT MCU, PIC16F, 20MHz, SSOP-20