You need to write a mips program to get the values


You need to write a MIPS program to get the values specified and You need to use recursion and at least 1 procedure.

Write a mips program that will compute the maximum value of each column of the matrix stored in row major order starting at the location labeled Original in the starter template below. The results should be stored starting at the location labeled Max. The arrays we use will be 4x4 elements. Here is the program template until main.

.data

strA: .asciiz "Original Array:\n "

strB: .asciiz "Second Array:\n: "

newline: .asciiz "\n"

space : .asciiz " "

# This is the start of the original array.

Original: .word 200, 270, 250, 100

.word 205, 230, 105, 235

.word 190, 95, 90, 205

.word 80, 205, 110, 215

# The next statement allocates room for the results in 4*4 = 16 bytes.

#

Max: .space 16

.align 2

.globl main

.text

main:

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: You need to write a mips program to get the values
Reference No:- TGS02876048

Expected delivery within 24 Hours