you will write a MIPS program to convert Fahrenheit temperature to Celsius. A basic conversion program was taught in the class. You should utilize that code from lecture slides. Your program will take the Fahrenheit temperature as a user input (single precision floating point). The temperature conversion code will be a leaf procedure that will be called from the main program after the user input. The procedure also will print the single precision floating value of the Celsius temperature. After the program returns to the main program, the user will be asked if they want another conversion. A character will be taken as input to indicate the user’s preference. If the input character is ‘y’, the program will continue from the beginning by taking another input and calling the conversion procedure. Any other input character will make the program exit.
In this lab, you will write a MIPS
You may need to learn a few syscall parameters that deal with character and single precision floating point numbers. You will find those in the help section of Mars. We use mov.s to copy the value of one single precision floating point register to another.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps