I need to translate this C code to MIPS assembly here is the c code:

int tmp = 0; 
for (int  j = 0;j < 15;++j) 
     tmp = tmp * 2 + 3

This is my MIPS assembly code. If you see any mistakes i would really like to know :) here is my code:

# tmp = $v0
# j = $t0

.globl main

 main:
    li $v0,0

loop:
    bgt $t0,15,exit
    addi $t0,$t0,1
    mul $t1,$v0,2
    add $v0,$t1, 3
    j loop  

exit:
link|improve this question

70% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Your loop goes from 0 to 14, so your bgt instruction should be: bgt $t0,14,exit I think.

.

link|improve this answer
feedback

You don't set j ($t0) to zero before the loop.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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