MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / parsecmd

Function parsecmd

src/debug.cpp:7290–7311  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7288static bool ppcmode, asmmode;
7289
7290static 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
7314static void debug_backtrace(int max_frames)

Callers 1

debug_lineFunction · 0.85

Calls 3

deactivate_debuggerFunction · 0.85
debug_continueFunction · 0.85
uae_resetFunction · 0.85

Tested by

no test coverage detected