Page 1 of 1

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
by answerhappygod
4 10 Pts Use The Following Variable Definitions Data Var1 Sbyte 4 2 3 1 Var2 Word 1000h 2000h 3000h 4000h Var 1
4 10 Pts Use The Following Variable Definitions Data Var1 Sbyte 4 2 3 1 Var2 Word 1000h 2000h 3000h 4000h Var 1 (48.76 KiB) Viewed 44 times
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