Fix XML information in GdbCmds.cpp and add support for the 'vCont;' command.
This commit is contained in:
parent
cbb0f4b872
commit
0acbfa0ca7
|
@ -46,7 +46,7 @@ const char* TARGET_INFO_ARM9 = "cputype:12;cpusubtype:7;triple:arm-none-eabi;ost
|
|||
"<reg name=\"r11\" bitsize=\"32\" type=\"uint32\"/>" \
|
||||
"<reg name=\"r12\" bitsize=\"32\" type=\"uint32\"/>" \
|
||||
"<reg name=\"sp\" bitsize=\"32\" type=\"data_ptr\"/>" \
|
||||
"<reg name=\"lr\" bitsize=\"32\" type=\"code_ptr\"/>" \
|
||||
"<reg name=\"lr\" bitsize=\"32\"/>" \
|
||||
"<reg name=\"pc\" bitsize=\"32\" type=\"code_ptr\"/>" \
|
||||
/* 16 regs */ \
|
||||
|
||||
|
|
|
@ -166,6 +166,7 @@ SubcmdHandler GdbStub::Handlers_v[] = {
|
|||
{ .MainCmd = 'v', .SubStr = "Stopped" , .Handler = GdbStub::Handle_v_Stopped },
|
||||
{ .MainCmd = 'v', .SubStr = "MustReplyEmpty", .Handler = GdbStub::Handle_v_MustReplyEmpty },
|
||||
{ .MainCmd = 'v', .SubStr = "Cont?" , .Handler = GdbStub::Handle_v_ContQuery },
|
||||
{ .MainCmd = 'v', .SubStr = "Cont;" , .Handler = GdbStub::Handle_v_Cont },
|
||||
{ .MainCmd = 'v', .SubStr = "Cont" , .Handler = GdbStub::Handle_v_Cont },
|
||||
|
||||
{ .MainCmd = 'v', .SubStr = NULL, .Handler = NULL }
|
||||
|
|
Loading…
Reference in New Issue