Advertisement
DMG

Dijeljenje pomocu oduzimanja

DMG
Oct 28th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Dijeljenje pomocu oduzimanja
  2. # dmarjanovic
  3.  
  4. .section .data
  5.     rezultat: .long 0
  6.     a: .long 8
  7.     b: .long 3
  8.  
  9. .section .text
  10. .globl main
  11.  
  12. main:
  13.  
  14.     movl a, %eax
  15.     movl rezultat, %edx
  16.    
  17. while:
  18.     cmpl b, %eax
  19.     jl end
  20.  
  21.     subl b, %eax
  22.     incl %edx
  23.     jmp while
  24.  
  25. end:
  26.     movl %edx, rezultat
  27.     movl $1, %eax
  28.     int $0x80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement