Hello and thanks for your awesome Lib
i got a little problem which i can't solve
An error occurred during FASM was assembling mnemonics. Error code: -122 (UndefinedSymbol); Error line: 3; Error offset: 21
My code
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim procID As Integer = 7728 Dim CBuf_AddText As IntPtr = &H563BA0 Dim memory = New MemorySharp(procID) Using t = memory.Assembly.BeginTransaction(True) t.AddLine("push {0}", TextBox1.Text) t.AddLine("push 0") t.AddLine("call {0}", CBuf_AddText) t.AddLine("add esp, 8") t.AddLine("retn") End Using End Sub
Can anyone see the fail i did?