Write a function call for the function min.  Write the code…

Write a function call for the function min.  Write the code that would store the values 7 and 9 to send to the function then make the function call.  Make sure to store the values in the correct registers. # Function to find the minimum of two numbers   min:        blt $a0, $a1, min_done   # Branch if $a0

Write a function call for the function max. Write the code t…

Write a function call for the function max. Write the code that would store the values 5 and 6 to send to the function then make the function call.  Make sure to store them in the correct registers.  # Function to find the maximum of two numbers    max:       bge $a0, $a1, max_done   # Branch if $a0 >= $a1       move $v0, $a1           # $a1 is greater        j max_end    max_done:        move $v0, $a0           # $a0 is greater    max_end:        jr $ra                  # Return