(instr, depth=0)
| 55 | |
| 56 | |
| 57 | def printInstr(instr, depth=0): |
| 58 | _bytes = [f'{x:02x}' for x in instr.bytes[:8]] |
| 59 | if len(instr.bytes) < 8: |
| 60 | _bytes.extend([' ',] * (8 - len(instr.bytes))) |
| 61 | instrBytes = ' '.join([f'{x}' for x in _bytes]) |
| 62 | logger.debug('\t' * 1 + f' [{instr.address:08x}]\t{instrBytes}' + '\t' * depth + f'{instr.mnemonic}\t{instr.op_str}') |
no outgoing calls
no test coverage detected