mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Improve register view window (now shows fp, various special regs). If the window is too small, delete the RegisterView section in your Debugger.ini.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1963 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
20
Externals/Bochs_disasm/PowerPCDisasm.cpp
vendored
20
Externals/Bochs_disasm/PowerPCDisasm.cpp
vendored
@ -2247,8 +2247,8 @@ void DisassembleGekko(unsigned int opcode, unsigned int curInstAddr, char *dest,
|
||||
|
||||
static const char *gprnames[] =
|
||||
{
|
||||
"r00", "r01", "r02", "r03", "r04", "r05", "r06", "r07",
|
||||
"r08", "r09", "r10", "r11", "r12", "r13", "r14", "r15",
|
||||
" r0", " r1", " r2", " r3", " r4", " r5", " r6", " r7",
|
||||
" r8", " r9", "r10", "r11", "r12", "r13", "r14", "r15",
|
||||
"r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
|
||||
"r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"
|
||||
};
|
||||
@ -2259,3 +2259,19 @@ const char *GetGPRName(unsigned int index)
|
||||
return gprnames[index];
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static const char *fprnames[] =
|
||||
{
|
||||
" f0", " f1", " f2", " f3", " f4", " f5", " f6", " f7",
|
||||
" f8", " f9", "f10", "f11", "f12", "f13", "f14", "f15",
|
||||
"f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
|
||||
"f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31"
|
||||
};
|
||||
|
||||
const char *GetFPRName(unsigned int index)
|
||||
{
|
||||
if (index < 32)
|
||||
return fprnames[index];
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user