Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write an assembly language program that repeatedly prompts the user to enter signed decimal integer numbers. The program should be run from the command prompt,

Write an assembly language program that repeatedly prompts the user to enter signed decimal integer numbers. The program should be run from the command prompt, output a text prompt to the screen, and then wait for the user to type in a number followed by the Enter key. (The legitimate range of user input values is any signed integer that can be represented in 32 bits.) After each number is entered, the program should determine and display the following information about the number: whether it is positive or negative; whether or not it is evenly divisible by 8; and whether or not it can be represented in 16 bits (in other words, is it in the range -32768 # x # +32767). For example, if the user entered the number +5, the output generated by the program should look similar to this: +5 is a positive number. +5 is not evenly divisible by 8. +5 can be represented in 16 bits. On the other hand, if the user entered -132816, the output would look like this: -132816 is a negative number. -132816 is evenly divisible by 8. -132816 cannot be represented in 16 bits. After determining and displaying the above information, the program should prompt the user to enter another number. This process should continue until the user enters the value 0 (which is neither positive nor negative). At that point, execution should terminate and return to the command prompt. Assemble, link, and test your program. Make sure to test it for each of the eight possible input cases (permutations of positive vs. negative, divisible by 8 vs. not divisible by 8, and fits in 16 bits vs. does not fit in 16 bits), as well as the ninth possibility (the special case of 0, which exits the program). When you are sure it is working, run it from the command prompt and capture a screen shot(s) of a test run that illustrates all nine possibilities and the corresponding outputs.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Principles Of Multimedia Database Systems

Authors: V.S. Subrahmanian

1st Edition

1558604669, 978-1558604667

More Books

Students also viewed these Databases questions