(self)
| 730 | |
| 731 | # stop emulation |
| 732 | def stop(self): |
| 733 | if self.multithread: |
| 734 | self.os.thread_management.stop() |
| 735 | |
| 736 | elif self.baremetal: |
| 737 | self.os.stop() |
| 738 | |
| 739 | else: |
| 740 | self.emu_stop() |
| 741 | |
| 742 | # start emulation |
| 743 | def emu_start(self, begin: int, end: int, timeout: int = 0, count: int = 0): |