RAM2
AI

To understand the electronic components of RAM (specifically modern DDR DRAM), we must look at it from the microscopic level of a single cell to the macroscopic level of the module (DIMM).
---
## 1. The Fundamental Unit: The Memory Cell
At its core, RAM is an array of millions of tiny electronic circuits. Each "bit" of data is stored in a cell consisting of two primary electronic parts:
| Component | Function |
| :--- | :--- |
| **Capacitor** | Stores the electrical charge. A charge represents a **1**, and no charge represents a **0**. |
| **Transistor** | Acts as a switch that allows the control circuitry to read the capacitor's state or change it (write). |
> **Note:** Because capacitors naturally leak electricity, they must be "refreshed" thousands of times per second, which is why it is called **Dynamic** RAM (DRAM).
---
## 2. Integrated Circuit (IC) Architecture
The black rectangular chips you see on a RAM stick are the Integrated Circuits. Inside these chips, the cells are organized into a grid:
* **Wordlines:** Conductive paths that activate a specific row of transistors.
* **Bitlines:** Conductive paths used to carry the data from the capacitor to the sense amplifiers.
* **Sense Amplifiers:** Sensitive electronic circuits that detect the tiny amount of charge released by a capacitor and amplify it to a full logic level (0 or 1).
---
## 3. The Physical Module (DIMM) Components
When you look at a physical RAM stick (Dual In-line Memory Module), you will see several key electronic parts:
### Key Components Table
| Part | Description |
| :--- | :--- |
| **PCB (Printed Circuit Board)** | The green or black board that connects all components via copper traces. |
| **DRAM Chips** | The actual storage units (ICs) where data resides. |
| **SPD (Serial Presence Detect)** | A small EEPROM chip that tells the BIOS/UEFI the RAM's speed, timing, and voltage. |
| **PMIC (Power Management IC)** | Found in DDR5; it manages voltage regulation directly on the module rather than relying on the motherboard. |
| **Gold Fingers** | The contact points at the bottom that interface with the motherboard slot. |
---
## 4. How Data Flows (Simplified)
```mermaid
graph LR
CPU -- Address --> Memory_Controller
Memory_Controller -- Command --> Transistor_Gate
Transistor_Gate -- Opens --> Capacitor
Capacitor -- Charge --> Bitline
Bitline -- Amplification --> Data_Out
```
---
- ⤷
What is the difference between the electronics of SRAM and DRAM?
- ⤷ Why does DDR5 include a PMIC on the module while DDR4 does not?
- ⤷ How do 'latencies' (CAS) relate to the physical electronic components of RAM?