Question

Write assembly code for a function that returns the sum of an integer array. The function...

Write assembly code for a function that returns the sum of an integer array. The function should receive the start address and the length of the array.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
:sum
   # assuming $a0 has array address
   # and $a1 has length
   li $v0, 0  # sum = 0
   li $t0, 0
   for:   bge $t0, $a1, end  # for (i = 0; i < length;)
      
      sll $t3, $t0, 2
      add $t3, $t3, $a0
      lw $t3, 0($t3)    # $t3 = A[i]
      
      add $v0, $v0, $t3  # sum = sum+A[i]
      addi $t0, $t0, 1   # i++
      j for
   end:
Add a comment
Know the answer?
Add Answer to:
Write assembly code for a function that returns the sum of an integer array. The function...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT