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

93LC66 参数 Datasheet PDF下载

93LC66图片预览
型号: 93LC66
PDF下载: 下载PDF文件 查看货源
内容描述: 1K / 2K / 4K 2.5V Microwire串行EEPROM [1K/2K/4K 2.5V Microwire Serial EEPROM]
分类和应用: 可编程只读存储器电动程控只读存储器电可擦编程只读存储器
文件页数/大小: 22 页 / 102 K
品牌: MICROCHIP [ MICROCHIP TECHNOLOGY ]
 浏览型号93LC66的Datasheet PDF文件第1页浏览型号93LC66的Datasheet PDF文件第3页浏览型号93LC66的Datasheet PDF文件第4页浏览型号93LC66的Datasheet PDF文件第5页浏览型号93LC66的Datasheet PDF文件第6页浏览型号93LC66的Datasheet PDF文件第7页浏览型号93LC66的Datasheet PDF文件第8页浏览型号93LC66的Datasheet PDF文件第9页  
Using the 93LC56 and 93LC66
16c5x/7x Cross-Assembler V4.12 Released
Line
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051
PC
Opcode
LIST P=16C54,c=132
;****************************************************************
;
3-Wire Byte Read Program (80 bytes)
;
;
This program demonstrates how to interface a
;
Microchip PIC16C54 to a 93LC56 or 93LC66 Serial EE
;
device. This program will read 8 consecutive addresses
;
in the ‘random read’ mode. This means that the opcode
;
and address for each byte will be sent to the device.
;
This program will repeat forever.
;
;
Another, more efficient method of reading consecutive
;
addresses is called the ‘sequential read’ mode. This
;
involves sending the opcode and address for the first
;
byte to read, then continuing to provide clocks for the
;
next addresses. The device will automatically increment
;
the address. An example of the sequential read mode is
;
provided in the ‘3wseqr.asm’ file.
;
;
This program communicates to the serial EE in the
;
x16 mode, and ASSUMES THE USER HAS SET THE ORG PIN
;
ON THE DEVICE TO Vcc.
;
;
Timing is based on using the PIC16C54 in ‘XT’ mode
;
using a 4Mhz crystal. Clock speeds to the serial EE
;
will be approximately 50 kHz for this setup.
;
;
PIC16C54 to Serial EE Connections:
;
;
PIC16C54
Serial EE
;
——————
——————
;
Pin 10 (RB4) —> Chip Select
;
Pin 11 (RB5) —> Clock
;
Pin 12 (RB6) —> Data In
;
Pin 13 (RB7) —> Data Out
;
ORG = Vcc
;
;************************************************************
;
Register Assignments
;************************************************************
status equ
3h
; status register
port_a equ
5h
; port 5 (port_a)
port_b equ
6h
; port 6 (port b) comm lines to serial EE
eeprom equ
0ah
; bit buffer
addr
equ
0ch
; address register
datai
equ
0dh
; stored data input reg.
datao
equ
0eh
; stored data output reg.
txbuf
equ
10h
; transmit buffer
count
equ
11h
; bits transmitted so far
bits
equ
12h
; bits to transmit
bytcnt equ
13h
; byte counter for read routine
Mon Jun 06 10:49:10 1994
Page 2
Mon Jun 06 10:49:10 1994
Page 1
0003
0005
0006
000A
000C
000D
000E
0010
0011
0012
0013
16c5x/7x Cross-Assembler V4.12 Released
Line
0052
0053
0054
0055
0056
0057
0058
0059
0060
PC
Opcode
0015
0016
0017
0018
0007
0006
loops
equ
15h
; delay loop counter
loops2 equ
16h
; delay loop counter
hbyte
equ
17h
; high byte for input data
lbyte
equ
18h
; low byte for input data
;************************************************************
;
Bit Assignments
;************************************************************
di
equ
7
; eeprom input
do
equ
6
; eeprom output
DS00560D-page 2
© 1994 Microchip Technology Inc.
8-100