Question: After the following MASM code is executed: mov eax,52 mov ebx,17 mov ecx,23 add eax,ebx sub eax,ecx What is the value in the eax register
After the following MASM code is executed: mov eax,52 mov ebx,17 mov ecx,23 add eax,ebx sub eax,ecx What is the value in the eax register (in decimal)? What is the value in the ebx register (in decimal)? What is the value in the ecx register (in decimal)?
After the following MASM code is executed: mov eax,19 mov ebx,3 mov edx,0 div ebx What is the value in the eax register (in decimal)? What is the value in the ebx register (in decimal)? What is the value in the edx register (in decimal)?
Suppose that result is declared as DWORD, and the following MASM code is executed: mov eax,23 mov ebx,14 mov ecx,6 label5: add eax,ebx add ebx,2 loop label5 mov result,eax What is the value stored in the memory location named result?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
