IInstructionParsable Type
Provides an interface for parsing binary instructions.
Instance members
| Instance member |
Description
|
Full Usage:
this.MaxInstructionSize
Returns: int
Modifiers: abstract |
Return the maximum possible size of an instruction.
|
|
Parse one instruction from the given byte span assuming that the address of the instruction is `addr`.
|
Full Usage:
this.Parse
Parameters:
byte[]
addr : Addr
Returns: IInstruction
Modifiers: abstract |
Parse one instruction from the given byte array assuming that the address of the instruction is `addr`.
|
B2R2