Disassemble instructions from @code assumed to be located at @address, stop when encountering first broken instruction. @param code The source machine code bytes. @param address The address of the first machine code byte. @return the array of successfully disassembled instructions, empty if no inst
(byte[] code, long address)
| 510 | * @return the array of successfully disassembled instructions, empty if no instruction could be disassembled. |
| 511 | */ |
| 512 | public CsInsn[] disasm(byte[] code, long address) { |
| 513 | return disasm(code, address, 0); |
| 514 | } |
| 515 | |
| 516 | /** |
| 517 | * Disassemble up to @count instructions from @code assumed to be located at @address, |