Question: PLEASE DO NOT ANSWER IN C++ - Write an assembly language program for the JASPer processor. The program should allow the user to convert a

PLEASE DO NOT ANSWER IN C++ - Write an assembly language program for the JASPer processor.

The program should allow the user to convert a four-digit binary number to decimal. The program works as follows:

1. The user will type four digits, using only the digits 1 and 0. The digits will be displayed on the screen as they are typed. If any other digits or letters are typed, they will be ignored and will not be displayed.

2. The program will convert the digits to a decimal number and display it on the next line.

3. The program will then end. Example output: 0010 2 1111 15 1010 10

Hints: For input and output, the system uses the ASCII values of the characters. The digit 1 will be stored as the ASCII value 49. The digit 0 will be stored as the ASCII value 48. If you want to display the symbol 2, you need to output the ASCII value 50

Sometimes the program needs to display TWO characters. For example, the number 15 is displayed as the symbol 1 and the symbol 5. This is not automatic you will need to display both symbols. Fortunately, there are only two possibilities: The program will only display a single symbol, or will display a 1 followed by another symbol. So you can handled this with a simple branch.

PLEASE DO NOT ANSWER IN C++

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!