| 543 | # dummy class resembling Cs class, just for cs_disasm_quick() |
| 544 | # this class only need to be referenced to via 2 fields: @csh & @arch |
| 545 | class _dummy_cs(object): |
| 546 | def __init__(self, csh, arch): |
| 547 | self.csh = csh |
| 548 | self.arch = arch |
| 549 | self._detail = False |
| 550 | |
| 551 | |
| 552 | # Quick & dirty Python function to disasm raw binary code |
no outgoing calls
no test coverage detected
searching dependent graphs…