Sets the value of the stack pointer register. @type sp: int @param sp: Value of the stack pointer register.
(self, sp)
| 657 | return context.sp |
| 658 | |
| 659 | def set_sp(self, sp): |
| 660 | """ |
| 661 | Sets the value of the stack pointer register. |
| 662 | |
| 663 | @type sp: int |
| 664 | @param sp: Value of the stack pointer register. |
| 665 | """ |
| 666 | context = self.get_context(win32.CONTEXT_CONTROL) |
| 667 | context.sp = sp |
| 668 | self.set_context(context) |
| 669 | |
| 670 | def get_fp(self): |
| 671 | """ |
nothing calls this directly
no test coverage detected