| 7288 | static bool ppcmode, asmmode; |
| 7289 | |
| 7290 | static bool parsecmd(TCHAR *cmd, bool *out) |
| 7291 | { |
| 7292 | if (!_tcsicmp(cmd, _T("reset"))) { |
| 7293 | deactivate_debugger(); |
| 7294 | debug_continue(); |
| 7295 | uae_reset(0, 0); |
| 7296 | return true; |
| 7297 | } |
| 7298 | if (!_tcsicmp(cmd, _T("reseth"))) { |
| 7299 | deactivate_debugger(); |
| 7300 | debug_continue(); |
| 7301 | uae_reset(1, 0); |
| 7302 | return true; |
| 7303 | } |
| 7304 | if (!_tcsicmp(cmd, _T("resetk"))) { |
| 7305 | deactivate_debugger(); |
| 7306 | debug_continue(); |
| 7307 | uae_reset(0, 1); |
| 7308 | return true; |
| 7309 | } |
| 7310 | return false; |
| 7311 | } |
| 7312 | |
| 7313 | #ifdef AMIBERRY |
| 7314 | static void debug_backtrace(int max_frames) |
no test coverage detected