In this lab, 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 the lecture slides. Your program will take the Fahrenheit temperature as 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.  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.  Also added an image of what the output is supposed to look like code is below:  result = ((5.0/9.0)*(fahr - 32.0));​ ​ result in $f0, ​ .data​ const5: .float 5.0​ const9: .float 9.0​ const32: .float 32.0 ​ fahr: .float 100​ .text​ lwc1 $f16, const5​ lwc1 $f18, const9​ div.s $f16, $f16, $f18​ lwc1  $f18, const32​ lwc1 $f12, fahr​ sub.s $f18, $f12, $f18​ mul.s $f0,  $f16, $f18

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

In this lab, 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 the lecture slides. Your program will take the Fahrenheit temperature as 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. 

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.  Also added an image of what the output is supposed to look like

code is below:

 result = ((5.0/9.0)*(fahr - 32.0));​

  • result in $f0, ​

.data​

const5: .float 5.0​

const9: .float 9.0​

const32: .float 32.0 ​

fahr: .float 100​

.text​

lwc1 $f16, const5​

lwc1 $f18, const9​

div.s $f16, $f16, $f18​

lwc1  $f18, const32​

lwc1 $f12, fahr​

sub.s $f18, $f12, $f18​

mul.s $f0,  $f16, $f18

Enter temparature (farenheit): 100
The temparature in celsius: 37.77778
Do you want to convert another? (y to continue):
Enter temparature (farenheit): 90
Y
The temparature in celsius: 32.222225
Do you want to convert another? (y to continue): n
program is finished running
ㄷ
Transcribed Image Text:Enter temparature (farenheit): 100 The temparature in celsius: 37.77778 Do you want to convert another? (y to continue): Enter temparature (farenheit): 90 Y The temparature in celsius: 32.222225 Do you want to convert another? (y to continue): n program is finished running ㄷ
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Binary numbers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education