(self, addr: int, size: int)
| 264 | return bytes.fromhex(hexstr) |
| 265 | |
| 266 | def dis_nbytes(self, addr: int, size: int) -> List[Instruction]: |
| 267 | insts = [Instruction(**dic) for dic in self._cmdj(f"pDj {size} @ {addr}")] |
| 268 | return insts |
| 269 | |
| 270 | def disassembler(self, ql: 'Qiling', addr: int, size: int, filt: Pattern[str]=None) -> int: |
| 271 | '''A human-friendly monkey patch of QlArchUtils.disassembler powered by r2, can be used for hook_code |
no test coverage detected