59606162636465
* Creates a new disassembler working on the given bytearray. * * @param code Byte array of code to be disassembled. */ public X86Disassembler(BinaryInputBuffer code) { this(code, new X86InstructionFactoryImpl()); }