Advertisement
Coriic

Untitled

Jun 1st, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. .data
  2. .dzielnik
  3. .long 64
  4. .wynik
  5. .quad 0
  6.  
  7. .text
  8. .type dzielenie, @function
  9. .global dzielenie
  10.  
  11. dzielenie:
  12. CMPB $0, %rdx
  13. JE calkowicie
  14. MOV $quad, %rcx
  15. JMP inaczej
  16.  
  17.  
  18. calkowicie:
  19. MOV %edi, %eax
  20. DIV %esi
  21. MOV %edx, %eax
  22. RET
  23.  
  24. inaczej:
  25. MOV %edi, %eax
  26. DIV dzielnik
  27. MOV %edx, (%rcx)
  28. INC %rcx
  29. DEC dzielnik
  30. CMPB $0, dzielnik
  31. JNE inaczej
  32. MOV %rcx, %rax
  33. RET
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement