Question: c.) Use the following program to estimate the instruction execution rate for MIPSym running on your computer. Adjust the Time Factor on your computer, assemble
c.) Use the following program to estimate the instruction execution rate for MIPSym running on your computer. Adjust the Time Factor" on your computer, assemble and run until the displayed timing of 5 second intervals is correct. For you answer, submit the "Time Factor" that corresponds to your interval.
.data # Data declaration
msg: .asciiz " Elapsed Time = "
.code
# Start
main:
li $s1,0 # Time counter
countdown:
li $s0,2500000 # Adjustable time f
waitloop:
addi $s0,$s0,-1
bnez $s0,waitloop
addi $s1,$s1,5
la $a0,msg
syscall $print_string
move $a0,$s1
syscall $print_int
addi $t0,$s1,-60
bnez $t0,countdown
syscall $exit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
