Difficulty: Easy
Correct Answer: RST
Explanation:
Introduction / Context:
Knowing the hardware reset pin is fundamental for designing power-on reset, manual reset buttons, and watchdog circuits. The 8051 uses a dedicated active-HIGH reset input pin with a defined minimum pulse width requirement.
Given Data / Assumptions:
Concept / Approach:
The standardized name of the reset pin on an 8051 is RST. Driving RST HIGH for at least the specified duration (while oscillator is running) resets the CPU, clears certain SFRs to default, and restarts execution at the reset vector 0000H.
Step-by-Step Solution:
Verification / Alternative check:
Vendor datasheets consistently label the pin as RST. PSEN is Program Store Enable (for external code fetch), not reset. EA selects internal/external code fetch.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
RST
Discussion & Comments