Arm to mips
From ICO wiki test
				source code
example using python
def fib(n):
   a,b = 1,1
   for i in range(n-1):
       a,b = b,a+b
   return a
example using python
def fib(n):
   a,b = 1,1
   for i in range(n-1):
       a,b = b,a+b
   return a