4- (10 pts) Use the following variable definitions .data var1 SBYTE -4, -2, 3,1 var2 WORD 1000h, 2000h, 3000h, 4000h var
Posted: Sun May 15, 2022 10:26 am
4- (10 pts) Use the following variable definitions .data var1 SBYTE -4, -2, 3,1 var2 WORD 1000h, 2000h, 3000h, 4000h var3 SWORD -16, -42 var4 DWORD 1,2,3,4,5 ; a. What will be the value of the destination operand after each of the following instructions? execute in sequence mov edx, var4 movzx edx, var2 mov edx, (var4+4) movsx edx, var1 ; b. ; c. ; d. oc