Question: 1. Use the following variable definitions to answer the question myBytes BYTE 10h,20h,30h,40h myWords WORD 8Ah,3Bh,72h,44h,661h myDoubles DWORD 1,2,3.4,5 Fill in the requested register values
1. Use the following variable definitions to answer the question myBytes BYTE 10h,20h,30h,40h myWords WORD 8Ah,3Bh,72h,44h,661h myDoubles DWORD 1,2,3.4,5 Fill in the requested register values on the right side of the following instruction sequence: mov esi,OFFSET myBytes mov ax,[esi]; a. AX mov eax,DWORD PTR myWords ; b. EAX- mov esi,OFFSET myDoubles mov ax,[esi+21 ; c. AX = mov ax,[esi+6] ; d. AX- mov ax,[esi-4]; e. AX- 2. What value will EAX contain after the following instructions execute? data dVal DWORD 12345678h code mov ax,3 mov WORD PTR dVal+2 ,ax mov eax,d Va
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
