Problem:
MIPS Assembly Language Programming exercise– Counting Loop
Question- Write a program that computes the sum of the integers from 1 to 100 by addition:
1 + 2 + 3 + 4 + 5 + ... + 98 + 99 + 100
Do this by using the blt macro (branch if less than) described in appendix D. Before the loop, initialize a register to zero to contain the sum, initialize another register to one (to be the counter), and another register to 101 to mark the end of the sequence. Inside the loop, add the counter to the sum, increment the counter and blt back to the top of the loop if the counter is less than 101.
Show the code, demonstrate it works properly and describe what it is doing.