Advertisement
Guest User

Untitled

a guest
Dec 14th, 2010
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. str := 'thisistheargument'#0;
  2. asm
  3. int 3;
  4.  
  5. push ebx;
  6. push esi;
  7.  
  8. mov eax, str;
  9. push eax;
  10. mov ecx, dword ptr ss:[classInst];
  11. mov ecx, dword ptr ss:[ecx];
  12.  
  13. mov eax, dword ptr ss:[ecx+$1c];
  14. call eax;
  15.  
  16. pop esi;
  17. pop ebx;
  18. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement