Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moltinginstar/fib
Fibonacci in x64 assembly.
https://github.com/moltinginstar/fib
Last synced: 10 days ago
JSON representation
Fibonacci in x64 assembly.
- Host: GitHub
- URL: https://github.com/moltinginstar/fib
- Owner: moltinginstar
- Created: 2022-12-26T12:24:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-26T12:50:47.000Z (about 2 years ago)
- Last Synced: 2024-10-20T18:54:56.514Z (2 months ago)
- Language: Assembly
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fib
An x64 assembly program that prints the Fibonacci sequence up to a given number.
## Building
Use this shell function to build and link for x64 Linux:
```sh
function asm() { nasm -felf64 -g $1.asm && gcc $1.o -o $1 -no-pie }
```