stop the emulation
(self, _line)
| 228 | self.sn.start_emulation() |
| 229 | |
| 230 | def do_stop_emulation(self, _line): |
| 231 | "stop the emulation" |
| 232 | self.sn.stop_emulation() |
| 233 | return 'exited by user command' |
| 234 | |
| 235 | def do_exit(self, _line): |
| 236 | "stop the emulation" |
nothing calls this directly
no test coverage detected