Basic Memory Operation: Static RAM, SRAM: An SRAM Is More Expensive and Less Dense Than DRAM. It Uses A
Basic Memory Operation: Static RAM, SRAM: An SRAM Is More Expensive and Less Dense Than DRAM. It Uses A
The memory unit supports two basic operations: read and write. The read operation reads
previously stored data and the write operation stores a new value in memory. Both of these
operations require a memory address. In addition, the write operation requires specification of
the data to be written. The address and data of the memory unit are connected to the address and
data buses of the system bus, respectively. The read and write signals come from the control bus.
The read operation is nondestructive in the sense that one can read a location of the memory as
many times as one wishes without destroying the contents of that location. The write operation,
however, is destructive, as writing a value into a location destroys the old contents of that
memory location.
Two major families of RAM are in use today—dynamic memory and static memory.
Dynamic memory cells use a minute capacitor to store a signal voltage, and they are
used in the smallest and cheapest memory circuits. Since capacitor voltage decays over
time, dynamic memory cells must be periodically refreshed or they will lose their stored
value. Although this refresh requirement adds significant overhead, dynamic memory
cells are very small, so they have become the most widely used of all memory circuits.
Most static memory circuits store a logic values using two back-to-back inverters. Static
memory devices do not need to be refreshed, and they can operate much faster than
dynamic circuits. But since they require far greater chip area than dynamic memory
cells, they are used only where they are most needed—in high speed memories, for
example—or when only small amounts of memory are required. In this project, we will
focus on static memory circuits and devices.
The RAM, random access memory is used to store temporary data within the computing system.It
takes the form of integrated circuit that allow stored data to be accessed in any order. RAM is a
volatile memory because its information is lost when the power is turned off.
Static RAM, SRAM: An SRAM is more expensive and less dense than DRAM. It uses a
memory cell comprising of six transistors. However it is faster and requires less power. As a
result it is often used as a cache memory in many forms of computer.
Dynamic RAM, DRAM: A DRAM cell consists of a transistor and capacitor pair. The
capacitor holds a high or low charge equating to a logic state 1 or 0 and the transistor acts as a
switch that lets the control circuitry on the chip read the capacitor's state of charge or change it.
Requiring many fewer components per memory cell, a DRAM is less expensive to produce than
SRAM. As a result DRAM is the predominant form of memory used in computers and embedded
systems for RAM applications.