Created
January 28, 2016 09:44
-
-
Save bdw/df7231ee485a4cd001ca to your computer and use it in GitHub Desktop.
Fibonacci in 8 instructions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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