Task 03 Write a program which stores a large number in AX, stores another smaller number in BX. Now ask whether the user wants to divide or multiply. User will give D' for Division or 'M’ for...

Solve in Assembly language by emu8086Task 03<br>Write a program which stores a large number in AX, stores another smaller number in BX. Now<br>ask whether the user wants to divide or multiply. User will give D' for Division or 'M’ for<br>Multiplication. If the user wants to divide, then perform AX / BX using repeated subtraction and<br>print the final remainder. And if the user wants to multiply then perform AX * BX using repeated<br>summation and then print the final result. You will not be able to use the

Extracted text: Task 03 Write a program which stores a large number in AX, stores another smaller number in BX. Now ask whether the user wants to divide or multiply. User will give D' for Division or 'M’ for Multiplication. If the user wants to divide, then perform AX / BX using repeated subtraction and print the final remainder. And if the user wants to multiply then perform AX * BX using repeated summation and then print the final result. You will not be able to use the "DIV" or the "MUL" function here. And you do not have to take overflow into account i.e. the test cases should be done without using any numbers which can cause overflow.

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here