Answered step by step
Verified Expert Solution
Question
1 Approved Answer
DO NOT use any pseudo or extended instructions. Must use the standard formats and no use of li or la instructions. No jal and jr.
DO NOT use any pseudo or extended instructions. Must use the standard formats and no use of li or la instructions. No jal and jr. There are no lw or sw instructios in this mips program. Please comment every instruction.
Write a MIPS assembly language program to do the following 1. 2. Print your name Prompt the user for the number of times to repeat the testing of your logic for step 4. (See the example below.) Read an integer If the integer that is input is less than 1 3. 4. Print an error message Else Repeat the following steps the number of times input in step 3. This will require a loop a. Read in a list of integers ending with a 0. The 0 marks the end of the input and is not considered part of the list Print the largest and smallest numbers in the input list. If only a zero appears in the list, print an error message b. 5. Print an ending message and then end your program. Note: your program should not end with an error message. Example input and output for the program. In this example, the number of times the logic is tested in this example is 3. Tom Jones Enter the number of times to test: 3 Enter a number 1 Enter a number O The smallest number is 1 The largest number is 1 Enter a number 0 Error: there are no numbers to test Enter a number -1 Enter a number 8 Enter a number 5 Enter a number 0 The smallest number is -1 The largest number is 8 Program complete Specifics: Use only the instructions covered to date. No jal and jr. Do not use any pseudo-instructions
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started