You have 3 free guides left 😟
Unlock your guides
You have 3 free guides left 😟
Unlock your guides

16.4 Memory devices and organization

6 min readaugust 6, 2024

Memory devices are the backbone of digital systems, storing and retrieving data crucial for operations. From volatile to non-volatile ROM, each type serves a specific purpose in the . Understanding these components is key to grasping how computers process and store information.

Memory organization structures these devices into a hierarchy, optimizing speed and capacity. From fast near the processor to slower but larger secondary storage, this system balances performance and cost. It's a clever way to make computers both quick and capable of handling vast amounts of data.

Memory Types

Volatile and Non-volatile Memory

Top images from around the web for Volatile and Non-volatile Memory
Top images from around the web for Volatile and Non-volatile Memory
  • requires a constant power supply to retain stored data (RAM)
    • Loses stored information when power is removed or turned off
    • Provides faster read and write access compared to
    • Commonly used as temporary storage for data and instructions currently in use by the processor
  • Non-volatile memory retains stored data even when power is removed (ROM, )
    • Maintains stored information without requiring a continuous power supply
    • Offers slower read and write access compared to volatile memory
    • Used for long-term storage of data and instructions that need to be preserved even when the device is powered off

Random Access Memory (RAM) and Read-Only Memory (ROM)

  • Memory (RAM) allows data to be read from and written to any memory location
    • Provides fast access to stored data, enabling quick retrieval and modification
    • Commonly used as the main memory in computer systems for temporary storage of data and instructions
    • Volatile memory, meaning it loses stored data when power is removed
  • Read-Only Memory (ROM) is a type of non-volatile memory that allows data to be read but not modified
    • Stores data and instructions that are permanently written during the manufacturing process or by special programming methods
    • Provides fast read access to stored data but does not allow direct modification by the user
    • Used for storing firmware, boot instructions, and fixed data that should not be altered during normal operation

Static RAM (SRAM) and Dynamic RAM (DRAM)

  • (SRAM) uses flip-flops to store each of data
    • Retains stored data as long as power is supplied, without the need for periodic refresh
    • Offers faster access times compared to DRAM but has lower storage density and higher cost per bit
    • Commonly used in cache memory and small-scale memory applications where speed is critical
  • (DRAM) uses capacitors to store each bit of data
    • Requires periodic refresh to maintain the stored data, as capacitors gradually lose their charge over time
    • Provides higher storage density and lower cost per bit compared to SRAM but has slower access times
    • Widely used as the main memory in computer systems due to its cost-effectiveness and high capacity

Memory Organization

Memory Cell and Buses

  • Memory cell is the basic unit of storage in a memory device
    • Represents a single bit of data, typically implemented using a flip-flop (SRAM) or a capacitor (DRAM)
    • Multiple memory cells are organized into arrays to form larger memory units (bytes, words)
  • Address bus is a set of lines used to specify the memory location to be accessed
    • Carries the address information from the processor to the memory device
    • The number of address lines determines the addressable memory space (e.g., 32 address lines can address 2^32 memory locations)
  • Data bus is a set of lines used to transfer data between the processor and memory
    • Carries the data to be written to or read from the specified memory location
    • The width of the data bus (e.g., 8, 16, 32, 64 bits) determines the amount of data that can be transferred in a single memory access

Memory Hierarchy

  • Memory hierarchy organizes memory devices based on their speed, capacity, and cost
    • Enables efficient access to data by leveraging the principle of locality (temporal and spatial)
    • Consists of multiple levels, with faster and smaller memory closer to the processor and slower and larger memory farther away
  • Cache memory is a small, fast memory located close to the processor
    • Stores frequently accessed data and instructions to reduce the average memory access time
    • Exploits the principle of locality to improve system performance by reducing the need to access slower main memory
  • Main memory, also known as primary memory, is the primary storage for data and instructions in a computer system
    • Typically implemented using DRAM due to its cost-effectiveness and high capacity
    • Serves as an intermediate level between the processor cache and secondary storage
  • Secondary storage, such as hard disk drives (HDDs) and solid-state drives (SSDs), provides large-capacity, non-volatile storage
    • Stores data and programs that are not currently in use by the processor
    • Offers slower access times compared to main memory but provides persistent storage at a lower cost per bit

Memory Hierarchy

Cache Memory

  • Cache memory is a small, fast memory located close to the processor
    • Acts as a buffer between the processor and main memory to reduce the average memory access time
    • Exploits the principle of locality (temporal and spatial) to store frequently accessed data and instructions
    • Organized into multiple levels (L1, L2, L3) with increasing size and as the level number increases
  • Cache hit occurs when the requested data is found in the cache
    • Results in faster memory access, as the data can be retrieved directly from the cache without accessing main memory
    • Improves system performance by reducing the number of slower main memory accesses
  • Cache miss occurs when the requested data is not found in the cache
    • Requires the processor to fetch the data from the next level of the memory hierarchy (main memory or lower-level caches)
    • Incurs a performance penalty due to the additional time needed to access the slower memory

Main Memory

  • Main memory, also known as primary memory, is the primary storage for data and instructions in a computer system
    • Typically implemented using Dynamic RAM (DRAM) due to its cost-effectiveness and high capacity
    • Provides faster access times compared to secondary storage but slower than cache memory
    • Stores the currently executing programs, their data, and intermediate results
  • Main memory is volatile, meaning it loses its contents when power is removed
    • Requires the operating system to load programs and data from secondary storage into main memory for execution
    • Facilitates the transfer of data and instructions between the processor and secondary storage as needed

Secondary Storage

  • Secondary storage, such as hard disk drives (HDDs) and solid-state drives (SSDs), provides large-capacity, non-volatile storage
    • Stores data, programs, and files that are not currently in use by the processor
    • Offers slower access times compared to main memory but provides persistent storage at a lower cost per bit
    • Retains stored information even when power is removed, allowing long-term storage of data and programs
  • Hard disk drives (HDDs) use magnetic disks to store data
    • Consist of one or more spinning disks (platters) with read/write heads that move across the disk surface to access data
    • Provide large storage capacities at a relatively low cost per bit but have slower access times due to mechanical components
  • Solid-state drives (SSDs) use flash memory to store data
    • Employ non-volatile memory chips (NAND flash) to store data without the need for moving parts
    • Offer faster access times, lower latency, and higher durability compared to HDDs but have higher cost per bit
© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.


© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.

© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.
Glossary
Glossary