Sets the value of the program counter register. @type pc: int @param pc: Value of the program counter register.
(self, pc)
| 638 | return context.pc |
| 639 | |
| 640 | def set_pc(self, pc): |
| 641 | """ |
| 642 | Sets the value of the program counter register. |
| 643 | |
| 644 | @type pc: int |
| 645 | @param pc: Value of the program counter register. |
| 646 | """ |
| 647 | context = self.get_context(win32.CONTEXT_CONTROL) |
| 648 | context.pc = pc |
| 649 | self.set_context(context) |
| 650 | |
| 651 | def get_sp(self): |
| 652 | """ |
no test coverage detected