Difference between revisions of "Help File:Disassembler"

From Cheat Engine
Jump to navigation Jump to search
(Created page with "==Disassembler== This function will allow you to give it an address and it will return the disassembled output. '''Function Definition''' ''BOOL Disassembler(ULONG address,...")
 
(No difference)

Latest revision as of 19:53, 29 July 2021

Disassembler[edit]

This function will allow you to give it an address and it will return the disassembled output.

Function Definition

BOOL Disassembler(ULONG address, char* output, int maxsize);
address:
The address of the instruction you want to disassemble.
output:
Pointer to the buffer the disassembled string will be placed in.
maxsize:
Maximum size the string can be.


Returns TRUE if there was enough memory to store the string. The returned string is built up as "Address - bytes - instruction".