Difference between revisions of "Lua:getPreviousOpcode"
								
								Jump to navigation
				Jump to search
				
				
		
		| m (moved getPreviousOpcode to Lua:getPreviousOpcode) |  (→Related Functions) | ||
| Line 20: | Line 20: | ||
| === Related Functions === | === Related Functions === | ||
| − | * [[disassemble]] | + | * [[Lua:disassemble|disassemble]] | 
| − | * [[getInstructionSize]] | + | * [[Lua:getInstructionSize|getInstructionSize]] | 
| − | * [[splitDisassembledString]] | + | * [[Lua:splitDisassembledString|splitDisassembledString]] | 
| − | * [[AOBScan]] | + | * [[Lua:AOBScan|AOBScan]] | 
| − | * [[autoAssemble]] | + | * [[Lua:autoAssemble|autoAssemble]] | 
| − | * [[readBytes]] | + | * [[Lua:readBytes|readBytes]] | 
| − | * [[readPointer]] | + | * [[Lua:readPointer|readPointer]] | 
| − | * [[writeBytes]] | + | * [[Lua:writeBytes|writeBytes]] | 
| − | * [[readBytesLocal]] | + | * [[Lua:readBytesLocal|readBytesLocal]] | 
| − | * [[readPointerLocal]] | + | * [[Lua:readPointerLocal|readPointerLocal]] | 
| − | * [[writeBytesLocal]] | + | * [[Lua:writeBytesLocal|writeBytesLocal]] | 
| − | * [[wordToByteTable]] | + | * [[Lua:wordToByteTable|wordToByteTable]] | 
| − | * [[dwordToByteTable]] | + | * [[Lua:dwordToByteTable|dwordToByteTable]] | 
| − | * [[qwordToByteTable]] | + | * [[Lua:qwordToByteTable|qwordToByteTable]] | 
| − | * [[floatToByteTable]] | + | * [[Lua:floatToByteTable|floatToByteTable]] | 
| − | * [[doubleToByteTable]] | + | * [[Lua:doubleToByteTable|doubleToByteTable]] | 
| − | * [[stringToByteTable]] | + | * [[Lua:stringToByteTable|stringToByteTable]] | 
| − | * [[wideStringToByteTable]] | + | * [[Lua:wideStringToByteTable|wideStringToByteTable]] | 
| − | * [[byteTableToWord]] | + | * [[Lua:byteTableToWord|byteTableToWord]] | 
| − | * [[byteTableToDword]] | + | * [[Lua:byteTableToDword|byteTableToDword]] | 
| − | * [[byteTableToQword]] | + | * [[Lua:byteTableToQword|byteTableToQword]] | 
| − | * [[byteTableToFloat]] | + | * [[Lua:byteTableToFloat|byteTableToFloat]] | 
| − | * [[byteTableToDouble]] | + | * [[Lua:byteTableToDouble|byteTableToDouble]] | 
| − | * [[byteTableToString]] | + | * [[Lua:byteTableToString|byteTableToString]] | 
| − | * [[byteTableToWideString]] | + | * [[Lua:byteTableToWideString|byteTableToWideString]] | 
Latest revision as of 01:19, 25 January 2018
function getPreviousOpcode(Address) : integer
Returns the address of the previous opcode (this is just an estimated guess).
Function Parameters[edit]
| Parameter | Type | Description | 
|---|---|---|
| Address | CEAddressString or Integer | The address of the instruction | 
See also[edit]
Related Functions[edit]
- disassemble
- getInstructionSize
- splitDisassembledString
- AOBScan
- autoAssemble
- readBytes
- readPointer
- writeBytes
- readBytesLocal
- readPointerLocal
- writeBytesLocal
- wordToByteTable
- dwordToByteTable
- qwordToByteTable
- floatToByteTable
- doubleToByteTable
- stringToByteTable
- wideStringToByteTable
- byteTableToWord
- byteTableToDword
- byteTableToQword
- byteTableToFloat
- byteTableToDouble
- byteTableToString
- byteTableToWideString

