Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .data
- .dzielnik
- .long 64
- .wynik
- .quad 0
- .text
- .type dzielenie, @function
- .global dzielenie
- dzielenie:
- CMPB $0, %rdx
- JE calkowicie
- MOV $quad, %rcx
- JMP inaczej
- calkowicie:
- MOV %edi, %eax
- DIV %esi
- MOV %edx, %eax
- RET
- inaczej:
- MOV %edi, %eax
- DIV dzielnik
- MOV %edx, (%rcx)
- INC %rcx
- DEC dzielnik
- CMPB $0, dzielnik
- JNE inaczej
- MOV %rcx, %rax
- RET
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement