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

Function process_breakpoint

src/debug.cpp:6443–6463  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6441}
6442
6443static int process_breakpoint(TCHAR **c)
6444{
6445 bool err;
6446 processptr = 0;
6447 xfree(processname);
6448 processname = NULL;
6449 if (!more_params(c))
6450 return 0;
6451 if (**c == '\"') {
6452 TCHAR pn[200];
6453 next_string(c, pn, sizeof(pn) / sizeof(TCHAR), 0);
6454 processname = ua(pn);
6455 } else {
6456 processptr = readhex(c, &err);
6457 if (err) {
6458 return 0;
6459 }
6460 }
6461 trace_mode = TRACE_CHECKONLY;
6462 return 1;
6463}
6464
6465static void saveloadmem (TCHAR **cc, bool save)
6466{

Callers 1

debug_lineFunction · 0.85

Calls 4

more_paramsFunction · 0.85
next_stringFunction · 0.85
uaFunction · 0.85
readhexFunction · 0.85

Tested by

no test coverage detected