Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tlmader/fibo-sqrt
MIPS assembler instructions for calculating index of fibonacci sequence and square root.
https://github.com/tlmader/fibo-sqrt
Last synced: about 1 month ago
JSON representation
MIPS assembler instructions for calculating index of fibonacci sequence and square root.
- Host: GitHub
- URL: https://github.com/tlmader/fibo-sqrt
- Owner: tlmader
- Created: 2015-03-26T00:08:44.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-26T00:21:33.000Z (almost 10 years ago)
- Last Synced: 2024-04-14T22:56:56.145Z (9 months ago)
- Language: Assembly
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fibo-sqrt
MIPS assembler instructions for calculating index of fibonacci sequence and square root.Sqrt.s computes the square root of a given number. The program accepts a number x in the .data section,
which can be a negative or positive number as well as it can be an integer or a real number.Fibo.s recursively computes and returns the Fibonacci number corresponding to a given index in the .data section.