Auto Assembler:assert
Revision as of 00:13, 13 January 2018 by TheyCallMeTim13 (talk | contribs) (Created page with 'Category:Assembler '''Auto Assembler''' assert(''Address'', ''ArrayOfBytes'') Will check the memory address for the given bytes. If the address's memory is not what is defin…')
Auto Assembler assert(Address, ArrayOfBytes)
Will check the memory address for the given bytes. If the address's memory is not what is defined by the array of bytes given, the auto assemble script will not execute.
Command Parameters
Parameter | Type | Description |
---|---|---|
Address | string | The address or symbol check against the given array of bytes. |
ArrayOfBytes | string | The string of bytes, as hex, to check against |
Examples
assert(Game.exe+123ABC, 01 02 03 0A 0B 0C)
define(bytes, 01 02 03 0A 0B 0C) assert(Game.exe+123ABC, bytes)
ASSERT(injectionPoint,01 02 03 0A 0B 0C)