Question: Assembly Language Objectives: add, sub, ins, des, neg, mul, imul, div, idix Question 1: Implement the following arithmetic in assembly language, using 32-bit signed operands:

Assembly Language
Objectives: add, sub, ins, des, neg, mul, imul, div, idix Question 1: Implement the following arithmetic in assembly language, using 32-bit signed operands: Result1 = ((90 / (9* 3) + 5 Result2 = (x + 5)/(y-2) Question 2: What will be the contents of EBX and RESULT after the following operation? moveax, 5 mov ebx, 6 mul ebx mov result, eax EBX = RESULT = Question 3: What will be the contents of AX and DX after the following operation? movax, 500h mov dx, 600h mov bx, 200h div bx AX = DX = Objectives: add, sub, ins, des, neg, mul, imul, div, idix Question 1: Implement the following arithmetic in assembly language, using 32-bit signed operands: Result1 = ((90 / (9* 3) + 5 Result2 = (x + 5)/(y-2) Question 2: What will be the contents of EBX and RESULT after the following operation? moveax, 5 mov ebx, 6 mul ebx mov result, eax EBX = RESULT = Question 3: What will be the contents of AX and DX after the following operation? movax, 500h mov dx, 600h mov bx, 200h div bx AX = DX =
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
