1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-31 08:26:32 -05:00

Merge pull request #2146 from mailwl/gdbstub-ida-regs

Small fix to let IDA see target.xml
This commit is contained in:
bunnei
2016-10-28 21:06:36 -04:00
committed by GitHub

View File

@@ -413,7 +413,7 @@ static void HandleQuery() {
if (strcmp(query, "TStatus") == 0) {
SendReply("T0");
} else if (strncmp(query, "Supported:", strlen("Supported:")) == 0) {
} else if (strncmp(query, "Supported", strlen("Supported")) == 0) {
// PacketSize needs to be large enough for target xml
SendReply("PacketSize=800;qXfer:features:read+");
} else if (strncmp(query, "Xfer:features:read:target.xml:",