Advertisement
Guest User

Untitled

a guest
Jul 12th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. union programm
  2.     memadress as byte ptr
  3.     f as sub()
  4. end union
  5.  
  6. dim shared as programm bar
  7.  
  8. sub foo()
  9.     bar.memadress=strptr(opcodes_und_so)
  10.     Asm
  11.         mov eax,123
  12.         mov edx,456
  13.         '...
  14.     End Asm
  15.     'EAX-Register wird verändert, bevor man die SUB aufruft
  16.     bar.f()
  17. end sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement