Auto Assembler:struct

From Cheat Engine
Jump to navigation Jump to search

Auto Assembler struct

With STRUCT you can define an internal structure in your auto assembler script. This can be used to keep your code clear.


Command Parameters[edit]

<none>


Examples[edit]

STRUCT stackview
returnaddress: DD ?
param1: 
  DD ?
param2: DB ? ? ? ?
ENDSTRUCT

mov eax,[EBP+stackview.param1]
mov ebx,[EBP+param2]


See also[edit]

Related Commands[edit]