Difference between revisions of "Auto Assembler:loadBinary"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''Auto Assembler''' loadBinary(''Address'', ''FileName'') Loads a binary file at the specified address. === Function Parameters === {|width="85%" cellpadding="10%" cellpadding…')
 
(See also)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[Category:Assembler]]
 
'''Auto Assembler''' loadBinary(''Address'', ''FileName'')
 
'''Auto Assembler''' loadBinary(''Address'', ''FileName'')
  
 
Loads a binary file at the specified address.
 
Loads a binary file at the specified address.
  
=== Function Parameters ===
+
=== Command Parameters ===
 
{|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0"
 
{|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0"
 
!align="left"|Parameter
 
!align="left"|Parameter
Line 33: Line 34:
 
== See also ==
 
== See also ==
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 +
* [[Auto_Assembler:Commands|Auto Assembler Commands]]
  
=== Related Functions ===
+
=== Related Commands ===
 
* [[Auto Assembler:aobScan|aobScan]]
 
* [[Auto Assembler:aobScan|aobScan]]
 
* [[Auto Assembler:aobScanModule|aobScanModule]]
 
* [[Auto Assembler:aobScanModule|aobScanModule]]
Line 49: Line 51:
 
* [[Auto Assembler:registerSymbol|registerSymbol]]
 
* [[Auto Assembler:registerSymbol|registerSymbol]]
 
* [[Auto Assembler:unregisterSymbol|unregisterSymbol]]
 
* [[Auto Assembler:unregisterSymbol|unregisterSymbol]]
* [[Auto Assembler:LUA|LUA]]
+
* [[Auto Assembler:LUA ASM|LUA ASM]]
* [[Auto Assembler:ASM|ASM]]
 

Latest revision as of 00:31, 13 January 2018

Auto Assembler loadBinary(Address, FileName)

Loads a binary file at the specified address.

Command Parameters[edit]

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


Examples[edit]

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[edit]

Related Commands[edit]