MCPcopy Create free account
hub / github.com/qilingframework/qiling / InvalidInsn

Class InvalidInsn

qiling/debugger/qdb/misc.py:13–24  ·  view source on GitHub ↗

class for displaying invalid instruction

Source from the content-addressed store, hash-verified

11
12@dataclass
13class InvalidInsn:
14 """
15 class for displaying invalid instruction
16 """
17
18 bytes: bytes
19 address: int
20 mnemonic: str = '(invalid)'
21 op_str: str = ''
22
23 def __post_init__(self):
24 self.size = len(self.bytes) if self.bytes else 1
25
26
27class Breakpoint:

Callers 1

disasmMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected