vote up 1 vote down star

Write a MIPS program that generates and adds up all even numbers from 1 to 100.

  • it must have at least one loop
  • it should store the sum in register R12


And this is what I wrote:
main:
    li      $t0, 0               # clear register $t0 to zero
    li      $t4, 0               # clear register $t4 to zero
loop:
    add     $t0, $t0, 2          # generating even numbers in register $t0
    add     $t4, $t4, $t0        #  compute the sume
    bne     $t0, 100, loop       # if t0 reached 100 then go to loop.
    b endloop                    # branch to endloop
endloop:
    li      $v0, 10              # terminate program run and
    syscall                      # Exit

Is this correct?

flag
Can you run it? Do you have a MIPS board or an emulator or something? – Andy White Apr 18 at 1:32
I use gxemul to emulate a mips architecture running NETBSD en.wikipedia.org/wiki/GXemul – Tom Apr 18 at 1:46
Another emulator is qemu, which emulates a bunch of architectures and systems including MIPS. – sigjuice Apr 18 at 1:51
thanks...but could you do me a favour, i ran it with spim, but everything looks good, could help me to run it with any emulator to see if i got it correct...thanks – kenny9999999 Apr 18 at 1:57
1  
@csunwold, i think that register R12 is general purpose register number twelve, which happens to be $t4 – Tom Apr 18 at 5:03
show 3 more comments

4 Answers

vote up 3 vote down

I just completed my MIPs assembly class and I have a suggestion for you: Don't use PC Spim!

I've used PC Spim, Mars, and Qemu and by far the Mars (Mips Assembler and Runtime Simulator) is the best. The editor is nice, it crashes ~a lot~ less, it allows you to set breakpoints, etc. I would consider one of the better MIPs emulators out there right now. It is provided free and open source by Missouri State University.

It comes as a .jar file so you can easily run it in windows/linux. alt text
[Mars Mips Emulator]

Normally, an easy way to tell if an individual number is odd or even you could simply do a bitwise AND 1 with it, and if the result is 0 then the number is even. However, since we are looping through the numbers in a linear fashion we can simply add 2 like you did in your posted code.

One thing you want to note is when adding an immediate value, you should use "addi" or "addiu". You also said you wanted to put the result in register $r12 but this is not a valid MIPs register. Check out MIPs wikipedia link: MIPS - Register Usage.

I've edited your program to work, and it stores the final result in $t1 and it also prints it.

    	        .text
    	        .globl main
main:
    li      $t0, 0               # $t0 = loop counter
    li      $t1, 0               # $t1 = sum of even numbers
loop:
    addi    $t0, $t0, 2          # generating even numbers in register $t0
    add     $t1, $t1, $t0        #  compute the sum
    bne     $t0, 100, loop       # if t0 reached 100 then go to loop.

    li      $v0, 4
    la      $a0, result
    syscall                      # print out "Sum = "

    li      $v0, 1
    move    $a0, $t1
    syscall                      # print out actual sum


exit:
    li      $v0, 10              # terminate program run and
    syscall                      # Exit	


                .data
result:         .asciiz "Sum = "

After running this in Mars I get the following:

Sum = 2550
-- program is finished running --

link|flag
but is it suppose to add even numbers from 1 to 100? – kenny9999999 Apr 18 at 2:37
@kenny9999999, Yes, it is. – Simucal Apr 18 at 3:47
THanks...very much it did work. – kenny9999999 Apr 18 at 4:08
@Simucal, I dont think they mean $r12 by R12, but general purpose register 12, which is $t4. – Tom Apr 18 at 4:40
vote up 0 vote down

Try this emulator. When I took Computer Organization, I used SPIM and it was fairly easy to use. You can also find tutorials on MIPS online. Remember, Google is your friend.

link|flag
please could you help me to run and see if i got it correct..thanks – kenny9999999 Apr 18 at 1:57
but is it suppose to add even numbers from 1 to 100? – kenny9999999 Apr 18 at 2:39
vote up 0 vote down

You should be able to use SPIM yourself. Also the line "b endloop" is unnecessary because if you don't branch back up to the top of loop the program will "fall into" endloop.

Download SPIM here:
http://pages.cs.wisc.edu/~larus/spim.html

link|flag
vote up 0 vote down

Code looks ok. As cunwold said, the "b endloop" is unnecesary, since the branch target is the first branch (bne...) fallthrough. There is one mistake though.

You are using the same instruction (add) in two different ways. The instruction

add $t0,$t0,2

should be

addiu $t0,$t0,2

Since you are adding an inmediate, not two registers.

So, here it goes. I replaced the syscall part with an actual return to a function (value returns in $v0 register).

Hope it helps.

File main.c

#include <stdio.h>

extern int addEven();

int main(){


        printf("%d\n",addEven());
        return 0;
}

File addEven.S (assembly)

#include <mips/regdef.h>

  /*
   * int addEven();
   * Adds even numbers between 0 and 100.
   * 0 + 2 + 4 + 6 +....+100 = 2550
   */

        .text
        .align 2
        .globl addEven

addEven:
        li      t0,0            # clear register $t0 to zero
        li      t4,0            # clear register $t4 to zero
loop:
        addiu   t0, t0,2          # generating even numbers in register $t0
        add     t4, t4,t0          #  compute the sume (R12 = t4)
        bne     t0, 100, loop      # if t0 reached 100 then go to loop.
endloop:
        move    v0,t4
        jr      ra

I compiled and linked these files. Here it goes.

root@:~/stackoverflow# gcc -c -g addEven.S
root@:~/stackoverflow# gcc -c -g main.c
root@:~/stackoverflow# gcc main.o addEven.o -o prog 
root@:~/stackoverflow# ./prog 
2550
root@:~/stackoverflow#
link|flag
Do you use MIPs often in this way? If so, what do you use it for? I'm curious because I like MIPs but don't see how I would use it very often. – Simucal Apr 18 at 5:47
I use it quite often, but only for educational purposes. I'm trying to get some boards to take it one step beyond. – Tom Apr 18 at 14:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.