Question: need help for assembly language thank you 1. Convert the following C++ pseudo code to ASM: if (A > B){ B = A; } if
need help for assembly language thank you
1. Convert the following C++ pseudo code to ASM:
if (A > B){
B = A;
}
if (A > C)
{
C = A;
}
else if(A == C)
{
D = A
}
2. . Convert the following MASM code into a higher order language form (like C++, Java, C#)
mov eax, 20
mov ebx, 30
cmp eax, ebx
jge then1
jle then2
jmp next
then1:
mov eax, 30
jmp next
then2:
mov eax, 40
jmp next
next
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
