Advertisement
Guest User

Untitled

a guest
Feb 4th, 2015
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. macro cmpe a, b, c {
  2.   cmp   a, b
  3.   je    c
  4. }
  5.  
  6. macro cmpne a, b, c {
  7.   cmp   a, b
  8.   jne   c
  9. }
  10.  
  11.   mov   eax, 8
  12.   mov   edx, 0x10 ; номер
  13.   mov   edi, 13 ; x
  14.   mov   esi, 60 ; y
  15.  
  16. .loop_start:
  17.   mcall , <edi, 32>, <esi, 16>
  18.  
  19.   inc   edx
  20.   add   edi, 70
  21.   cmpne edi, 293, @f
  22.   mov   edi, 13
  23.   add   esi, 25
  24.   cmpe  esi, 135, .loop_end
  25. @@:
  26.   jmp   .loop_start
  27. .loop_end:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement