Advertisement
Guest User

Untitled

a guest
May 19th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. mov ebx, a
  2. cmp ebx, 0
  3. jle end
  4.         dec ebx
  5.         push ebx
  6.         call fib
  7.  
  8.         mov ecx, eax
  9.         push ebx
  10.         call fib
  11.  
  12.         add ecx, eax
  13.         push ecx
  14.         call fib
  15.  
  16. end:
  17.         mov result, 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement