| 1983 | } |
| 1984 | |
| 1985 | void debugger_scan_libraries(void) |
| 1986 | { |
| 1987 | #ifdef DEBUGGER |
| 1988 | if (!libnamecnt) |
| 1989 | return; |
| 1990 | uaecptr v = get_long_debug(4); |
| 1991 | addrbank *b = &get_mem_bank(v); |
| 1992 | if (!b || !b->check(v, 400) || !(b->flags & ABFLAG_RAM)) |
| 1993 | return; |
| 1994 | int cnt = 0; |
| 1995 | scan_library_list(v + 378, &cnt); |
| 1996 | scan_library_list(v + 350, &cnt); |
| 1997 | scan_library_list(v + 336, &cnt); |
| 1998 | console_out_f(_T("%d libraries matched with library symbols.\n"), cnt); |
| 1999 | #endif |
| 2000 | } |
| 2001 | |
| 2002 | |
| 2003 | bool debugger_get_library_symbol(uaecptr base, uaecptr addr, TCHAR *out, size_t outsize) |
no test coverage detected