The stack pointer of the target (read-only)
(self)
| 582 | |
| 583 | @property |
| 584 | def stack_pointer(self) -> int: |
| 585 | """The stack pointer of the target (read-only)""" |
| 586 | return dbgcore.BNDebuggerGetStackPointer(self.handle) |
| 587 | |
| 588 | def read_memory(self, address: int, size: int) -> binaryninja.DataBuffer: |
| 589 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected