Difficulty: Easy
Correct Answer: 3e8
Explanation:
Introduction / Context:
Classic IBM PC-compatible systems map serial ports to fixed I/O addresses and IRQs. Knowing these mappings is crucial for low-level troubleshooting, legacy OS configuration, and resolving resource conflicts with add-in cards or embedded devices.
Given Data / Assumptions:
Concept / Approach:
The canonical PC serial-port base addresses are: COM1 = 3F8h (IRQ 4), COM2 = 2F8h (IRQ 3), COM3 = 3E8h (typically IRQ 4), and COM4 = 2E8h (typically IRQ 3). These addresses are widely used in BIOS and operating systems of the DOS/Windows 9x era and remain a knowledge staple for technicians working with legacy hardware.
Step-by-Step Solution:
Verification / Alternative check:
Motherboard or expansion-card manuals list these addresses. System utilities (MSD, debug, or device-manager resources in older Windows) also report configured port addresses consistent with these defaults.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing IRQ assignments with I/O addresses, or mixing COM3 (3E8h) with COM1 (3F8h) due to the similar high nibble.
Final Answer:
3e8
Discussion & Comments