Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
Designing an EPROM subsystem requires determining how many physical chips are needed and how to decode their chip-select lines. The number of devices dictates the width of the decoder used to select one device at a time within the mapped address range.
Given Data / Assumptions:
Concept / Approach:
The number of devices needed is Total / Per-device = 16 KB / 4 KB = 4 devices. Selecting among 4 devices requires a 2-to-4 decoder (often called 1-of-4). A 1-of-8 (3-to-8) decoder is only needed if 8 devices must be selected, which would be the case with 2K × 8 devices for 16 KB.
Step-by-Step Solution:
Verification / Alternative check:
Address bit budgeting: 4K needs 12 address lines per device; the next 2 address lines (A12–A13) decode which of the 4 chips is active. No third select bit is required.
Why Other Options Are Wrong:
Common Pitfalls:
Mixing up “KB” with “K locations”; ignoring that ×8 devices already match the data width, so only address-space selection is needed.
Final Answer:
Incorrect
Discussion & Comments