Memory Interfacing
Memory Interfacing
Memory in a microprocessor system is where information (data and instructions) is kept. It can be classified into two main types:
Main memory (RAM and ROM) Storage memory (Disks , CD ROMs, etc.)
The simple view of RAM is that it is made up of registers that are made up of flip-flops (or memory elements).
The number of flip-flops in a memory register determines the size of the memory word.
ROM on the other hand uses diodes instead of the flip-flops to permanently hold the information.
2
For the microprocessor to access (Read or Write) information in memory (RAM or ROM), it needs to do the following:
Select the right memory chip (using part of the address bus). Identify the memory location (using the rest of the address bus). Access the data (using the data bus).
Tri-State Buffers
An important circuit element that is used extensively in memory. This buffer is a logic circuit that has three states:
Logic 0, logic1, and high impedance. When this circuit is in high impedance mode it looks as if it is disconnected from the output completely.
High Impedance 4
Input
Outp ut Enabl e
OR
Input
Outp ut Enabl e
5
The basic memory element is similar to a D latch. This latch has an input where the data comes in. It has an enable input and an output on which data comes out.
Data Input Data Output
Enable
EN
Since we have tri-state buffers on both the inputs and outputs of the flip flops, we can actually use one set of pins only.
The chip would now look like this:
W R A1 A0
Input Buffers
RD
A d d r e s s
D e c o d e r
Memory Reg. 0
Memory Reg. 1 Memory Reg. 2 Memory Reg. 3 Output Buffers
D0 D1 D2 D3 RD W R A1 A0
D0 D1 D2 D3
Dimensions of Memory
Memory is usually measured by two numbers: its length and its width (Length X Width).
The length is the total number of locations. The width is the number of bits in each location.
The length (total number of locations) is a function of the number of address lines.
# of memory locations = 2( # of address lines) So, a memory chip with 10 address lines would have 210 = 1024 locations (1K) Looking at it from the other side, a memory chip with 4K locations would need Log2 4096=12 address lines
9
The memory map is a picture representation of the address range and shows where the different memory chips are located within the address range.
0000 0000
EPROM
3FFF 4400
RAM 1
Address Range
RAM 2 RAM 3
8FFF 9000 A3FF A400
RAM 4
F7FF FFFF
1 0
The address range of a particular chip is the list of all addresses that are mapped to the chip.
An example for the address range and its relationship to the memory chips would be the Post Office Boxes in the post office.
Each box has its unique number that is assigned sequentially. (memory locations) The boxes are grouped into groups. (memory chips) The first box in a group has the number immediately after the last box in the previous group.
1 1
1 2
The 8085 has 16 address lines. That means it can address 216 = 64K memory locations.
Then it will need 1 memory chip with 64 k locations, or 2 chips with 32 K in each, or 4 with 16 K each or 16 of the 4 K chips, etc.
how would we use these address lines to control the multiple chips?
1 3
Now, we can break up the 16-bit address of the 8085 into two pieces: A15 A14 A13 A12 A11 A10 A9 A8 A7 A6 A5 A4 A3 A2 A1 A0
Chip Selection Location Selection within the Chip
Depending on the combination on the address lines A15 - A10 , the address range of the specified chip is determined.
1 4
Chip Select
Usually, each memory chip has a CS (Chip Select) input. The chip will only work if an active signal is applied on that input. To allow the use of multiple chips in the make up of memory, we need to use a number of the address lines for the purpose of chip selection.
These address lines are decoded to generate the 2n necessary CS inputs for the memory chips to be used.
1 5
A chip that uses the combination A15 - A10 = 001000 would have addresses that range from 2000H to 23FFH.
Keep in mind that the 10 address lines on the chip gives a range of 00 0000 0000 to 11 1111 1111 or 000H to 3FFH for each of the chips. The memory chip in this example would require the following circuit on its chip select input:
A 10 A 11 A 12 A 13 A 14 A 15 CS
1 6
Interface an IC 2764 with the 8085 using NAND gate address decoder such that the address range allocated to the chip is 0000H 1FFFH
1 7
1 8
Interface a 27128 EPROM (16K 8 bits or 16 KB) IC with the 8085 using a NAND gate address decoder such that the starting address assigned to the chip is C000H
1 9
2 0
2 1