Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .section .data
- dec_br_max = 10
- dec_br: .fill dec_br_max, 1, 0
- .section .text
- .globl main
- main:
- movl $37500000, %eax
- movl $10, %ebx
- leal dec_br, %edi
- dec_cifra:
- xorl %edx, %edx
- divl %ebx
- addb $'0', (%edi)
- incl %edi
- andl %eax, %eax
- jnz dec_cifra
- movb $0, (%edi)
- decl %edi
- leal dec_br, %esi
- obrni:
- cmpl %edi, %esi
- jae kraj
- movb (%edi), %ah
- movb (%esi), %al
- movb %ah, (%esi)
- movb %al, (%edi)
- decl %edi
- incl %esi
- jmp obrni
- kraj:
- movl $1, %eax
- movl $0, %ebx
- int $0x80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement