#Lab 3: Copy the elements of an array into another. #Assembler Directives .data .word 7 .word 3 .word 1 .word 12 .word 10 .word 2 .word 5 .word 9 .word 16 .word 11 .text .globl main main: add $s0, $zero, $zero add $t0, $zero, $zero lui $s0, 0x1001 ori $s0,$s0,0 #$s0 contains the address of the first element of the first array lui $t0, 0x1001 ori $t0, $t0, 0x0040 #$t0 contains the address of the first element of the second array ############################################# # Put your code here: # ############################################# jr $ra