Question: Written in Python Problem 2: Conditional Processing (35%) Convert each of the following assembly codes to a high-level code construct: if-then, if-else, while loop, or
Written in Python

Problem 2: Conditional Processing (35%) Convert each of the following assembly codes to a high-level code construct: if-then, if-else, while loop, or a combination of them. You will find the variables that you can use in your answers beside each code. You can also use literal numbers (constants) whenever it is applicable. You can use x and y as variables in your code. .data DWORD? DWORD ? .code main PROC moveax, X cmp eax, y jae L1 sub eax, y mov x, eax jmp EXIT 11: add eax, y inc eax mov x, eax EXIT: main endp end main
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
