Auto Assembler:struct

From Cheat Engine
Revision as of 01:23, 13 January 2018 by TheyCallMeTim13 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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

<none>


Examples

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

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


See also

Related Commands