Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 }
```