Difference between revisions of "Auto Assembler:loadBinary"

From Cheat Engine
Jump to navigation Jump to search
(Related Commands)
Line 1: Line 1:
 +
[[Category:Assembler]]
 
'''Auto Assembler''' loadBinary(''Address'', ''FileName'')
 
'''Auto Assembler''' loadBinary(''Address'', ''FileName'')
  

Revision as of 11:37, 19 March 2017

Auto Assembler loadBinary(Address, FileName)

Loads a binary file at the specified address.

Command Parameters

Parameter Type Description
Address string The address to load the binary file at
FileName string The file name of the binary file


Examples

loadBinary(SomeSymbol, someBinaryFile.bin)
loadBinary(00123ABC, someBinaryFile.bin)

Binary files are just text file with a explicit format; 2 byte groups separated with spaces, and 16 byte lines.

Binary file of NOPs 32 bytes (0x20) in size:

9090 9090 9090 9090 9090 9090 9090 9090
9090 9090 9090 9090 9090 9090 9090 9090

See also

Related Commands