From 8adaf00407538f09d5d0cf306c4100611a5aa8af Mon Sep 17 00:00:00 2001 From: Eric Fry Date: Tue, 28 Apr 2020 22:03:04 +1000 Subject: Add support for printing a byte from memory in native debugger. Add stubs for GDB commands qThreadExtraInfo and qP --- gdb_remote.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gdb_remote.c') diff --git a/gdb_remote.c b/gdb_remote.c index 6cf1d67..cdc73a5 100644 --- a/gdb_remote.c +++ b/gdb_remote.c @@ -401,6 +401,10 @@ void gdb_run_command(m68k_context * context, uint32_t pc, char * command) gdb_send_command("m1"); } else if (!strcmp("sThreadInfo", command + 1)) { gdb_send_command("l"); + } else if (!memcmp("ThreadExtraInfo", command+1, strlen("ThreadExtraInfo"))) { + gdb_send_command(""); + } else if (command[1] == 'P') { + gdb_send_command(""); } else { goto not_impl; } -- cgit v1.2.3