mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
Pad responses to gdb for VFP registers
This commit is contained in:
parent
53aa55fcaa
commit
8a0d848646
1 changed files with 3 additions and 0 deletions
|
@ -473,6 +473,7 @@ static void ReadRegister() {
|
||||||
IntToHex(reply, Core::g_app_core->GetVFPReg(id - CSPR_REGISTER - 1)); // VFP registers should start at 26, so one after CSPR_REGISTER
|
IntToHex(reply, Core::g_app_core->GetVFPReg(id - CSPR_REGISTER - 1)); // VFP registers should start at 26, so one after CSPR_REGISTER
|
||||||
} else if (id == FPSCR_REGISTER) {
|
} else if (id == FPSCR_REGISTER) {
|
||||||
IntToHex(reply, Core::g_app_core->GetVFPSystemReg(VFP_FPSCR)); // Get FPSCR
|
IntToHex(reply, Core::g_app_core->GetVFPSystemReg(VFP_FPSCR)); // Get FPSCR
|
||||||
|
IntToHex(reply + 8, 0);
|
||||||
} else {
|
} else {
|
||||||
return SendReply("E01");
|
return SendReply("E01");
|
||||||
}
|
}
|
||||||
|
@ -497,6 +498,8 @@ static void ReadRegisters() {
|
||||||
i++; // These registers seem to be all 64bit instead of 32bit, so skip two instead of one
|
i++; // These registers seem to be all 64bit instead of 32bit, so skip two instead of one
|
||||||
} else if (i > CSPR_REGISTER && i < FPSCR_REGISTER) {
|
} else if (i > CSPR_REGISTER && i < FPSCR_REGISTER) {
|
||||||
IntToHex(bufptr + i * 8, Core::g_app_core->GetVFPReg(i - CSPR_REGISTER - 1));
|
IntToHex(bufptr + i * 8, Core::g_app_core->GetVFPReg(i - CSPR_REGISTER - 1));
|
||||||
|
IntToHex(bufptr + (i + 1) * 8, 0);
|
||||||
|
i++;
|
||||||
} else if (i == FPSCR_REGISTER) {
|
} else if (i == FPSCR_REGISTER) {
|
||||||
IntToHex(bufptr + i * 8, Core::g_app_core->GetVFPSystemReg(VFP_FPSCR));
|
IntToHex(bufptr + i * 8, Core::g_app_core->GetVFPSystemReg(VFP_FPSCR));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue