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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!