Difference between revisions of "Lua:disassemble"
Jump to navigation
Jump to search
(Created page with ''''function''' disassemble(''Address'') Disassembles the given address and returns a string in the format of "address - bytes - opcode : extra". === Function Parameters === {|…') |
(→Related Functions) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | '''function''' disassemble(''Address'') | + | [[Category:Lua]] |
+ | '''function''' disassemble(''Address'') ''':''' string | ||
Disassembles the given address and returns a string in the format of "address - bytes - opcode : extra". | Disassembles the given address and returns a string in the format of "address - bytes - opcode : extra". | ||
Line 16: | Line 17: | ||
− | + | {{LuaSeeAlso}} | |
− | |||
− | |||
=== Related Functions === | === Related Functions === | ||
− | * [[getInstructionSize]] | + | * [[Lua:getInstructionSize|getInstructionSize]] |
− | * [[getPreviousOpcode]] | + | * [[Lua:getPreviousOpcode|getPreviousOpcode]] |
− | * [[splitDisassembledString]] | + | * [[Lua:splitDisassembledString|splitDisassembledString]] |
− | * [[AOBScan]] | + | * [[Lua:AOBScan|AOBScan]] |
− | * [[autoAssemble]] | + | * [[Lua:autoAssemble|autoAssemble]] |
− | * [[readBytes]] | + | * [[Lua:readBytes|readBytes]] |
− | * [[readPointer]] | + | * [[Lua:readPointer|readPointer]] |
− | * [[writeBytes]] | + | * [[Lua:writeBytes|writeBytes]] |
− | * [[ | + | * [[Lua:readBytesLocal|readBytesLocal]] |
− | + | * [[Lua:readPointerLocal|readPointerLocal]] | |
− | * [[readPointerLocal]] | + | * [[Lua:writeBytesLocal|writeBytesLocal]] |
− | * [[writeBytesLocal]] | + | * [[Lua:wordToByteTable|wordToByteTable]] |
− | * [[wordToByteTable]] | + | * [[Lua:dwordToByteTable|dwordToByteTable]] |
− | * [[dwordToByteTable]] | + | * [[Lua:qwordToByteTable|qwordToByteTable]] |
− | * [[qwordToByteTable]] | + | * [[Lua:floatToByteTable|floatToByteTable]] |
− | * [[floatToByteTable]] | + | * [[Lua:doubleToByteTable|doubleToByteTable]] |
− | * [[doubleToByteTable]] | + | * [[Lua:stringToByteTable|stringToByteTable]] |
− | * [[stringToByteTable]] | + | * [[Lua:wideStringToByteTable|wideStringToByteTable]] |
− | * [[wideStringToByteTable]] | + | * [[Lua:byteTableToWord|byteTableToWord]] |
− | * [[byteTableToWord]] | + | * [[Lua:byteTableToDword|byteTableToDword]] |
− | * [[byteTableToDword]] | + | * [[Lua:byteTableToQword|byteTableToQword]] |
− | * [[byteTableToQword]] | + | * [[Lua:byteTableToFloat|byteTableToFloat]] |
− | * [[byteTableToFloat]] | + | * [[Lua:byteTableToDouble|byteTableToDouble]] |
− | * [[byteTableToDouble]] | + | * [[Lua:byteTableToString|byteTableToString]] |
− | * [[byteTableToString]] | + | * [[Lua:byteTableToWideString|byteTableToWideString]] |
− | * [[byteTableToWideString]] |
Latest revision as of 01:18, 25 January 2018
function disassemble(Address) : string
Disassembles the given address and returns a string in the format of "address - bytes - opcode : extra".
Function Parameters[edit]
Parameter | Type | Description |
---|---|---|
Address | CEAddressString or Integer | The address to disassembled |
See also[edit]
Related Functions[edit]
- getInstructionSize
- getPreviousOpcode
- splitDisassembledString
- AOBScan
- autoAssemble
- readBytes
- readPointer
- writeBytes
- readBytesLocal
- readPointerLocal
- writeBytesLocal
- wordToByteTable
- dwordToByteTable
- qwordToByteTable
- floatToByteTable
- doubleToByteTable
- stringToByteTable
- wideStringToByteTable
- byteTableToWord
- byteTableToDword
- byteTableToQword
- byteTableToFloat
- byteTableToDouble
- byteTableToString
- byteTableToWideString