Skip to content

accraze/Mips-Recursion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

This program reads in an integer and runs it through a recursive method.

It follows this algorithm:
If input n<=2, return 4, else  = 2*function1(n-2) + 5*function1(n-3) + 2

About

recursive methods in MIPS assembly

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published