Advertisement
Lauda

Untitled

Jun 9th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .section .data
  2. dec_br_max = 10
  3. dec_br: .fill dec_br_max, 1, 0
  4.  
  5. .section .text
  6. .globl main
  7. main:
  8.     movl $37500000, %eax
  9.     movl $10, %ebx
  10.     leal dec_br, %edi
  11.  
  12. dec_cifra:
  13.     xorl %edx, %edx
  14.     divl %ebx
  15.     addb $'0', (%edi)
  16.     incl %edi
  17.     andl %eax, %eax
  18.     jnz dec_cifra
  19.    
  20.     movb $0, (%edi)
  21.     decl %edi
  22.     leal dec_br, %esi
  23.  
  24. obrni:
  25.     cmpl %edi, %esi
  26.     jae kraj
  27.     movb (%edi), %ah
  28.     movb (%esi), %al
  29.     movb %ah, (%esi)
  30.     movb %al, (%edi)
  31.     decl %edi
  32.     incl %esi
  33.     jmp obrni
  34.  
  35. kraj:
  36.     movl $1, %eax
  37.     movl $0, %ebx
  38.     int $0x80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement