Difficulty: Easy
Correct Answer: HIGH, read
Explanation:
Introduction / Context:
Control-signal polarity matters in DRAM timing. Many DRAM families use active-low write enables (sometimes labeled W or WE). Understanding which state corresponds to read or write avoids bus-contention bugs and corrupted data.
Given Data / Assumptions:
Concept / Approach:
During a read, the device must not sample data-in; instead, it should drive data-out. Thus W remains in the deasserted (HIGH) state for read. During a write, W goes LOW to enable storing D at the addressed location while outputs are typically not driven.
Step-by-Step Solution:
Verification / Alternative check:
Consult any classic DRAM timing: WE=HIGH indicates read; WE=LOW indicates write pulse width and data setup.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing output tri-state with control input levels or assuming all signals use active-high logic.
Final Answer:
HIGH, read
Discussion & Comments