CS 61C Su14 Homework 3 Name: Login: Problem 1 a. b. c. d. e. f. g. h. Problem 2 Add comments to each line: fun: addi $t0,$zero,32 # comment here addi $t1,$zero,0 # comment here loop: sub $t0,$t0,4 # comment here srlv $t2,$a0,$t0 # comment here andi $t2,$t2,15 # comment here slti $t3,$t2,10 # comment here bne $t3,$zero,addLess # comment here addi $t2,$t2,7 # comment here addLess:addi $t2,$t2,48 # comment here add $t4,$a1,$t1 # comment here sb $t2,0($t4) # comment here beq $t0,$zero,done # comment here addi $t1,$t1,1 # comment here j loop # comment here done: sb $zero,1($t4) # comment here jr $ra # comment here Explain what is in the array as the function returns (1-2 sentences):