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:
1) Identify destination: A.2) Identify source: R3.3) Apply syntax: MOV A, R3.4) Execute: A receives the byte from R3; flags typically unchanged.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