Inline Assembler in C++


/ Published in: C++
Save to your folder(s)



Copy this code and paste it in your HTML
  1. void Drop::ShowData()
  2. {
  3.  
  4. __asm
  5. {
  6. pusha
  7. pushfd
  8.  
  9. push 0
  10. push 0
  11. push 0
  12. push 0
  13. call DWORD ptr MessageBoxA
  14.  
  15. popfd
  16. popa
  17. }
  18. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.