I am trying to make a Fibonacci sequence with MIPS and this is the code I have so far.
main: li $t1, 0 li $t2, 1 add $t3, $t1, $t2 l