Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Type Test
  2.     As Ubyte array(5)
  3.     Declare Sub DoSomething()
  4. End Type
  5.  
  6. Sub Test.DoSomething()
  7.     Var tmp=@array(0)
  8.     Asm mov tmp+1,12
  9. End Sub
  10.  
  11. Dim As Test tmp
  12. tmp.DoSomething
  13. Print tmp.array(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement