Skip to content

Instantly share code, notes, and snippets.

@bdw
Created January 28, 2016 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdw/df7231ee485a4cd001ca to your computer and use it in GitHub Desktop.
Save bdw/df7231ee485a4cd001ca to your computer and use it in GitHub Desktop.
Fibonacci in 8 instructions
.intel_syntax noprefix
.section __TEXT,__text /* or .section .text on linux / elf */
.globl _fib
_fib:
mov rax, 1
mov rcx, 1
loop:
dec rdi
jl end
add rax, rcx
xchg rcx, rax
jmp loop
end:
ret
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment