FUnneR

NZD - V1

Mar 8th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NZD
  2. #Nemanja Komadina, PR140/2015
  3. .section .data
  4. .section .text
  5. .globl main
  6. main:
  7.    
  8.     movl $12, %eax
  9.     movl $8, %ebx
  10. uporedi:
  11.     cmpl %ebx, %eax
  12.     je kraj
  13.     cmpl %ebx, %eax
  14.     ja vece
  15.     subl %eax, %ebx
  16.     jmp uporedi
  17.    
  18. vece:
  19.     subl %ebx, %eax
  20.     jmp uporedi
  21.    
  22. kraj:
  23.     movl $1, %eax
  24.     int $0x80
Add Comment
Please, Sign In to add comment