1. Print out an introduction that includes: Your name, a title, and a brief description of this program.
2.. Prompt the user for two numbers and save them in two registers.
3. Make sure the numbers are positive. Stop the program if either number is below the number 1 and print out a message.
4. Print out in order:
a. The equation and Sum of the two numbers
b. The equation and Difference of the two numbers
C. The equation and Product of the two numbers
d. The equation and integer quotient and remainder of the division of the two numbers. You may assume that an attempt to divide by zero will not be made.
e. Format the output as shown in the example below.
f. Print out a concluding message.
You should have a comment beside each instruction in the assembly program (or at a minimum a comment for a small group of related instructions) to help make your code more understandable. You should also have comments at the top of the file indicating your name, this course, and the assignment. For example: see image.
Faculty III
Add, Subtract, Multiply and Divide two numbers
Enter the first number: 20
Enter the second number: 5
20 + 5=25
20 - 5=15
20 * 5=100
20 / 5=4 rem 0
The program stopped.. may the force be with you.
Faculty III
Add, Subtract, Multiply and Divide two numbers
Enter the first number: 20
Enter the second number: 0
*** Warning Will Robinson... The number is below 1.***