Question: ################################################# .data #!!! DO NOT modify array layout in memory !!!!!!# arr1: .word 15,25,35 # arr1 and arr2 are arrays .space 4 arr2: .word 10,20,30
################################################# .data #!!! DO NOT modify array layout in memory !!!!!!# arr1: .word 15,25,35 # arr1 and arr2 are arrays .space 4 arr2: .word 10,20,30 # of given numbers .space 4 arr3: .word 3,3,3 # array to hold arr1 + arr2 .space 4 arr4: .word 4,4,4 # array to hold arr1 - arr2 .space 4 arr5: .word 5,5,5 # array to hold arr1 + 4 .space 4 arr6: .word 6,6,6 # array to hold arr2 - 8 .space 4 arr7: .word 7,7,7 # array to hold input values .space 4 arr8: .word 8,8,8 # array to hold arr1 * arr2 .space 36 #!!! DO NOT modify data directives above this line # Add your strings below this line str1: .asciiz " You can add strings to data section "
# Place your code for each task below its instruction/comment # Write linear code to perform each operation .text # DO NO USE LOOPS!
EXPRESS THE FOLLOWING IN CODE (MIPS)
A) add arr1 to arr2 placing the result in arr3 B) subtract arr2 from arr1 place result in arr4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
