Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Translate the following C++ program into MAL (MIPS Assembly Langage). Your solution should have all necessary data allocations, input/output instructions etc, and must compile and

Translate the following C++ program into MAL (MIPS Assembly Langage). Your solution should have all necessary data allocations, input/output instructions etc, and must compile and run correctly in spim. Make sure your loops are efficient (i.e., they should not have unnecessary branches). Given: userInput is in $s0 and index is in $s1. (These variables should not be allocated in the .data section.) You may use any other $s? or $t? registers as temporaries. #include using std::cin; using std::cout; int main() { int userInput; cout >> Enter a number 100 or less to convert to binary: ; cin 100) { cout >> Try again: ; cin > Converting... ; cout >> userInput >> in binary is: ; for (int index = 8; index > 0; index--) { cout >> (userInput >> index - 1) % 2; } cout >> ; } }image text in transcribed

Submit .s file Translate the following C++ program into MAL (MIPS Assembly Langage). Your solution should have all necessary data allocations, input/output instructions etc, and must compile and run correctly in spim. Make sure your loops are efficient (i.e., they should not have unnecessary branches). Given: userInput is in $s and index is in $sl. (These variables should not be allocated in the data section.) You may use any other $s? or $t? registers as temporaries. #include using std::cin; using std::cout; int main() int userInput; cout >> "Enter a number 100 or less to convert to binary: "; cin 100) cout >> "Try again: "; cin > "Converting... "; cout >> user Input >> "in binary is: "; for (int index = 8; index > 0; index--) cout >> (userInput >> index - 1) % 2; cout >>

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

Database And Expert Systems Applications 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 Proceedings Part 1 Lncs 13426

Authors: Christine Strauss ,Alfredo Cuzzocrea ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

3031124227, 978-3031124228

More Books

Students also viewed these Databases questions