Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. _asm {
  2. mov eax,[ebp+8]
  3.  
  4. cmp eax,2
  5. JNB _recursiv
  6. mov eax,1
  7. xor ecx,ecx
  8. JMP _gata
  9.  
  10.  
  11. _recursiv:
  12. dec eax
  13. push eax
  14. call recursiv
  15. sub eax,2
  16. push eax
  17. call recursiv
  18. add esp,4
  19. add ecx,eax
  20. _gata:
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement