Guest User

Untitled

a guest
Apr 27th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. inc eax
  2. call 0x1234567
  3. dec ebx
  4.  
  5.  
  6. 0x1234567:
  7. push 0xFF
  8. push 0x16
  9. invoke Beep
  10. ret
  11.  
  12. //выполняться будет, как если бы было написано вот так:
  13.  
  14. inc eax
  15. push 0xFF
  16. push 0x16
  17. invoke Beep
  18. dec ebx
Add Comment
Please, Sign In to add comment