Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Complete the SPIM assembly language program loop2.s. The program will calculate

ID: 3765544 • Letter: C

Question

Complete the SPIM assembly language program loop2.s.
The program will calculate the sum of the elements in "numbers"
whose value is less than or equal to 1000.
Here is the program skeleton; you will complete it.

##
## Program Name: loop2.s
##
## - will calculate the sum of all elements in the array "numbers"
## whose value is less than 1000.
## - "numbers" is an array with 5 integer elements.
## - "count" holds the number of elements in "numbers".
##
##
## - Output format must be
## "sum = 11"
##
## t0 - points to array elements in turn
## t1 - contains a count of elements
##      t2 - contains sum
##
## t3 - each word from the array "numbers" in turn
##

#################################################
#                                               #
#               text segment                    #
#                                               #
#################################################

        .text
        .globl __start
__start:                # execution starts here

# Put your answer between dashed lines.
#
#------------------Your code starts next line---------------



#-----------------Your code ends above this line----------------

la $a0,endl # syscall to print out
li $v0,4 # a new line
syscall

li $v0,10 # Exit
syscall # Bye!

#################################################
#                                               #
#               data segment                    #
#                                               #
#################################################

        .data
numbers:
.word 3,2000,2,6,3000
count: .word 5

ans1: .asciiz "sum = "
endl: .asciiz " "   

##
## end of file loop2.s

Explanation / Answer

## ## Program Name: loop2.s ## ## - will calculate the sum of all elements in the array "numbers" ## whose value is less than 1000. ## - "numbers" is an array with 5 integer elements. ## - "count" holds the number of elements in "numbers". ## ## ## - Output format must be ## "sum = 11" ## ## t0 - points to array elements in turn ## t1 - contains a count of elements ## t2 - contains sum ## ## t3 - each word from the array "numbers" in turn ## ################################################# # # # text segment # # # ################################################# .text .globl __start __start: # execution starts here # Put your answer between dashed lines. # #------------------Your code starts next line--------------- #-----------------Your code ends above this line---------------- la $a0,endl # syscall to print out li $v0,4 # a new line syscall li $v0,10 # Exit syscall # Bye! ################################################# # # # data segment # # # ################################################# .data numbers: .word 3,2000,2,6,3000 count: .word 5 ans1: .asciiz "sum = " endl: .asciiz " " ## ## end of file loop2.s

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote