@rtype: int @return: Value of the stack pointer register.
(self)
| 649 | self.set_context(context) |
| 650 | |
| 651 | def get_sp(self): |
| 652 | """ |
| 653 | @rtype: int |
| 654 | @return: Value of the stack pointer register. |
| 655 | """ |
| 656 | context = self.get_context(win32.CONTEXT_CONTROL) |
| 657 | return context.sp |
| 658 | |
| 659 | def set_sp(self, sp): |
| 660 | """ |
no test coverage detected