Consider the following 8086 assembly language program:
MOV AX, BB11H
MOV CX, 1122H
ADD AX, CX
HLT
The result of this program is:
1
CX = CC33H
2
AX = CC33H
3
CX = BB11H
4
AX = BB11H
Consider the following 8086 assembly language program:
MOV AX, BB11H
MOV CX, 1122H
ADD AX, CX
HLT
The result of this program is: