Advertisement
Guest User

Untitled

a guest
Oct 16th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. .model small
  2. .stack 512d
  3.  
  4. .data
  5. j DB 3d
  6. i DB 5d
  7. ;nome DB 'Gabriel', 0Dh, 0Ah, 24h
  8.  
  9. .code
  10. mov ax,i
  11. mov bx,j
  12. cmp ax,bx
  13. jg entao
  14.  
  15.  
  16. entao:
  17. sub ax,bx
  18. add j,ax
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement