Do not use pseudo-instructions

Assignment Help Basic Computer Science
Reference no: EM13979097

Below is the main function for this assignment.  Copy this into your file to start and change Name to your name.  Stubs have been added for some of the functions so it will assemble.

.data num1: .word 0 num2: .word 0

text1: .asciiz "\nProduct " name: .asciiz "\nName" endline: .asciiz "\n"

.text

.globl main

 

main:

 

lui $a0, 0x1001     

# get start of data

 

addiu $a0, $a0, 0x0012

# get start of name

 

andi $a2, $a0, 0

 

# set flag to false

 

 

jal print  

 

# print name

 

ori $s0, $0, 5

 

# repeat 5 times

top:

beq $s0, $0, end

 

# if counter is zero, stop loop

 

 

 

 

 

lui $a0, 0x1001

 

# set address of first word

 

addiu $a1, $a0, 4

 

# set address of second word

 

jalgetinput

 

# call function to get input, store into memory

 

 

 

 

 

lui $t0, 0x1001

 

# get address of first word

 

lw $a0, 0($t0)

 

# get the first value from memory

 

lw $a1, 4($t0)

 

# get the second value from memory

 

jal multiply

 

# multiply the values, result in $v0

 

addi $a1, $v0, 0

 

# get value to print from $v0

 

lui $a0, 0x1001

 

# get start of data section

 

addi $a0, $a0, 8

 

# get start of product output string

 

ori $a2, $0, 1

 

# set flag to true

 

jal print  

 

# print result

 

 

 

 

 

addi $s0, $s0, -1

 

# decrement counter

 

 

j top       

 

# repeat

end: ori $v0, $0, 10

 

# set command to stop program,

         syscall    

 

 

 

getinput: jr $ra

#stub

 

print: jr $ra      

#stub

 

multiply: jr $ra

#stub

 

You are to complete the program by writing four functions.  Pay particular attention to the purpose of each function, what registers to use and how the parameters and stack are to be used.  If the instructions specify a particular register, then you must use it.

1.      print

                                  $a0 - address of a string to print

                                   $a1 - value of an integer value to print

                                   $a2 - boolean value (1 or 0)

 

This function must first print the string, then if $a2 holds a 1 (true) print the integer.  Both outputs must be on the same line. End the output with a newline. 

2.      multiply

                                   $a0 - first integer

                                   $a1 - second integer

                                   $v0 - first integer * second integer

 

This function is to calculate and return the result of multiplying the arguments together. You may assume that both arguments are greater than zero.  As multiplication is really repeated addition, you can calculate the result by adding and using a loop.  Using a version of the mult instruction is NOT ACCEPTABLE.

3.      getpos 

                                   $a0 - prompt

                                   $v0 - positive integer input

This function will print the prompt string by calling the print function (above) and then get input from the user.  This process is repeated until a value greater than zero is input.  The value is then returned in $v0.  As this function calls another function so you MUSTsave the $ra on the stack (not into another register).

4.      getinput

                                  $a0 - address to store the first value

                                   $a1 - address to store the second value

This function must call the getpos function two times and store each return value into the memory locations given in $a0 and $a1.  As this function calls another function so you MUST save the $ra on the stack (not into another register).

General:

1.      Do not use pseudo-instructions.  

2.      All calls to the functions must be done through jal and returns through jr.

3.      Your code must be documented for each function.  Describe which registers are used in the function and how they are used.

Submit your file with the complete program.

Reference no: EM13979097

Questions Cloud

Do a what if analysis by changing the probability : What is the probability that at least 30 employees out of 80 would be financially secure if they lost their job for 6 months to a year?
What is the standard deviation of the random variable : What is the standard deviation of the random variable? What is the mean of the random variable?
Zero economic profit includes a normal return : Zero economic profit includes a normal return for business owner. However, how do we know that the business owner will be satisfied with zero economic profit? In other words, if a business owner is earning zero economic profit, is there another oppor..
An investor has two investments a and b : An investor has two investments A and B. The investor believes that investment A is equally likely to increase by $1,000 or to decrease by $1,000 by the end of the year.
Do not use pseudo-instructions : You are to complete the program by writing four functions.  Pay particular attention to the purpose of each function, what registers to use and how the parameters and stack are to be used.  If the instructions specify a particular register, then you ..
How did hasting big five model of personality leadership : How did Hasting Big Five model of personality leadership traits change from Pure Software to Netflix? Which leadership styles did Hasting use at Pure Software and Netflix? How effectively were these leadership styles used? Explain how power, organiza..
Given a choice between a command line interface : 1.Given a choice between a command line interface and a GUI, most people prefer the GUI. There are, however, people who prefer the command line interface. Why do you suppose anyone would prefer a command line interface?2. Briefly describe a hierarchi..
Find the expected number of people who arrive before you : a. Find the expected number of people who arrive before you.b. Find the variance of the number of people who arrive before you.
Explain each of the columns in the data : The sample above shows all three of the types of input that will be found in our tests. All the input will start with a header line like the one at the top of the input and it should be ignored. Let me explain each of the columns in the data

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Identifies the cost of computer

identifies the cost of computer components to configure a computer system (including all peripheral devices where needed) for use in one of the following four situations:

  Input devices

Compare how the gestures data is generated and represented for interpretation in each of the following input devices. In your comparison, consider the data formats (radio waves, electrical signal, sound, etc.), device drivers, operating systems suppo..

  Cores on computer systems

Assignment : Cores on Computer Systems:  Differentiate between multiprocessor systems and many-core systems in terms of power efficiency, cost benefit analysis, instructions processing efficiency, and packaging form factors.

  Prepare an annual budget in an excel spreadsheet

Prepare working solutions in Excel that will manage the annual budget

  Write a research paper in relation to a software design

Research paper in relation to a Software Design related topic

  Describe the forest, domain, ou, and trust configuration

Describe the forest, domain, OU, and trust configuration for Bluesky. Include a chart or diagram of the current configuration. Currently Bluesky has a single domain and default OU structure.

  Construct a truth table for the boolean expression

Construct a truth table for the Boolean expressions ABC + A'B'C' ABC + AB'C' + A'B'C' A(BC' + B'C)

  Evaluate the cost of materials

Evaluate the cost of materials

  The marie simulator

Depending on how comfortable you are with using the MARIE simulator after reading

  What is the main advantage of using master pages

What is the main advantage of using master pages. Explain the purpose and advantage of using styles.

  Describe the three fundamental models of distributed systems

Explain the two approaches to packet delivery by the network layer in Distributed Systems. Describe the three fundamental models of Distributed Systems

  Distinguish between caching and buffering

Distinguish between caching and buffering The failure model defines the ways in which failure may occur in order to provide an understanding of the effects of failure. Give one type of failure with a brief description of the failure

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd