Difficulty: Easy
Correct Answer: MOV A, R3
Explanation:
Introduction / Context:
Understanding 8051 operand order and register names is essential. The MOV instruction uses the syntax MOV destination, source.
Given Data / Assumptions:
Concept / Approach:
To move R3 into A, R3 must be the source and A the destination: MOV A, R3. Variants like MOV R3, A reverse the direction; other shown mnemonics are invalid.
Step-by-Step Solution:
Verification / Alternative check:
Consult the 8051 instruction set summary; MOV A, Rn is the documented form.
Why Other Options Are Wrong:
Common Pitfalls:
Reversing source/destination order or misnaming R3 as 3R.
Final Answer:
MOV A, R3
Discussion & Comments