A.
Assume that the Instruction Pointer, EIP, contains96
10
and the assembly language representation of the instruction in memory at address 9610 isJB 175. If the flags are currentlyCF=0, ZF=0 and SF=1 what is the value of the EIP after the instruction executes?
B.
Assume that the Instruction Pointer, EIP, contains154
10
and the assembly language representation of the instruction in memory at address 15410 isJNS 189. If the flags are currentlyCF=1, ZF=0 and SF=1 what is the value of the EIP after the instruction executes?
C.
Assume that before the instruction is executed, the flags areCF=0, ZF=0 and SF=0 and the Registers have the valuesAL=0x35,BL=0x0FCL=0x25 andDL=0x78.
What are the values of the flags after the instruction ADD AL,0x90 executes?
D.
The following instruction is executed. Assume that before execution, register R12 contains 0x85, R9 initially contains 0xC3, and the flags are ZF=0, SF=1, and CF=0. 0x indicates hexadecimal;do not include a 0x with your answer.
Instruction: CMP R12, R9
After execution, register R12 contains