Problem 5 : Conditional Jumps

Assume that the registers have the following hex values:

RegValue
AX9977
BX7799
CX0F0F
DXF0F0

For each of the conditional branching commands, determine whether or not the jump will occur. The first row is given as an example. (20 pts)

CommandWill
Jump
Will
Not
Jump
CMP AL,AL
JE label
X
CMP AL,BL
JA label
CMP AX,BX
JA label
CMP AX,BX
JG label
CMP AX,BX
JC label
ADD AX,BX
JC label
NOT BX
JS label
CMP CH,CL
JZ label
TEST CH,CL
JZ label
AND CX,DX
JZ label
XOR DX,DX
JZ label