Auto Assembler:assert
Jump to navigation
Jump to search
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[edit]
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[edit]
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)