Advertisements
Advertisements
प्रश्न
If accumulator contains the data ABH and register B contains 54H. ‘What will be the contents of accumulator in hexadecimal after execution of each of the instructions dependently (Stepwise, i.e., one after another.
ANA BCMACMP BANI OOH
दीर्घउत्तर
Advertisements
उत्तर
Initial: A = ABH, B = 54H.
1. ANA B, A ← A AND B.
ABH AND 54H = 00H, so Accumulator = 00H.
2. CMA, Complement accumulator (one's complement).
Complement of 00H = FFH, so Accumulator = FFH.
3. CMP B, Compare A with B (flags affected); the accumulator is not changed.
A remains FFH after CMP B. (Flags: since FFH > 54H, CY = 0 and Z = 0.)
ANI 00H, A ← A AND 00H (immediate).
FFH AND 00H = 00H, so Accumulator = 00H.
After ANA B: 00H
After CMA: FFH
After CMP B: FFH
After ANI 00H: 00H
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2024-2025 (July) Official Board Paper
