GoToEIP()

Syntax

Ergebnis = GoToEIP(AnweisungsAdresse)
Beschreibung
Setzt den aktuellen Anweisungs-Zeiger (Pointer) auf die angegebene Adresse im Speicher.
Beispiel:
  LoopCnt=0

  ;Where are we ?       ; get current address in memory
  EIP=GetCurrentEIP(1)  ;
  ;X - EIP points to this line

  ;a simple DebugMessage
  Debug "Loop "+Str(LoopCnt)

  If LoopCnt<10  ;we have less than 10 loop counts, so
    LoopCnt+1    ;...add one
    GoToEIP(EIP) ;...and goto last adress
  EndIf
  Debug "Ready!"

Unterstützte OS

Windows

<- GetErrorRegister() - OnError Inhaltsverzeichnis - OnErrorGosub() ->