mirror of https://github.com/mgba-emu/mgba.git
Debugger: Readability improvements (fixes #1238)
This commit is contained in:
parent
00cbb6156b
commit
ff2a0f8519
1
CHANGES
1
CHANGES
|
@ -152,6 +152,7 @@ Misc:
|
|||
- Python: Minor API improvements
|
||||
- Qt: Minor memory view tweaks
|
||||
- CMake: Fix libswresample version dependencies (fixes mgba.io/i/1229)
|
||||
- Debugger: Readability improvements (fixes mgba.io/i/1238)
|
||||
|
||||
0.7 beta 1: (2018-09-24)
|
||||
- Initial beta for 0.7
|
||||
|
|
|
@ -125,13 +125,14 @@ static void _printStatus(struct CLIDebuggerSystem* debugger) {
|
|||
struct CLIDebuggerBackend* be = debugger->p->backend;
|
||||
struct ARMCore* cpu = debugger->p->d.core->cpu;
|
||||
int r;
|
||||
for (r = 0; r < 4; ++r) {
|
||||
be->printf(be, "%08X %08X %08X %08X\n",
|
||||
cpu->gprs[r << 2],
|
||||
cpu->gprs[(r << 2) + 1],
|
||||
cpu->gprs[(r << 2) + 2],
|
||||
cpu->gprs[(r << 2) + 3]);
|
||||
for (r = 0; r < 16; r += 4) {
|
||||
be->printf(be, "%sr%i: %08X %sr%i: %08X %sr%i: %08X %sr%i: %08X\n",
|
||||
r < 10 ? " " : "", r, cpu->gprs[r],
|
||||
r < 9 ? " " : "", r + 1, cpu->gprs[r + 1],
|
||||
r < 8 ? " " : "", r + 2, cpu->gprs[r + 2],
|
||||
r < 7 ? " " : "", r + 3, cpu->gprs[r + 3]);
|
||||
}
|
||||
be->printf(be, "cpsr: ");
|
||||
_printPSR(be, cpu->cpsr);
|
||||
int instructionLength;
|
||||
enum ExecutionMode mode = cpu->cpsr.t;
|
||||
|
|
|
@ -21,7 +21,7 @@ static struct CLIDebuggerCommandSummary _lr35902Commands[] = {
|
|||
};
|
||||
|
||||
static inline void _printFlags(struct CLIDebuggerBackend* be, union FlagRegister f) {
|
||||
be->printf(be, "[%c%c%c%c]\n",
|
||||
be->printf(be, "F: [%c%c%c%c]\n",
|
||||
f.z ? 'Z' : '-',
|
||||
f.n ? 'N' : '-',
|
||||
f.h ? 'H' : '-',
|
||||
|
|
|
@ -213,10 +213,10 @@ static void LR35902DebuggerTrace(struct mDebuggerPlatform* d, char* out, size_t*
|
|||
disPtr += 2;
|
||||
LR35902Disassemble(&info, disPtr, sizeof(disassembly) - (disPtr - disassembly));
|
||||
|
||||
*length = snprintf(out, *length, "A: %02X F: %02X B: %02X C: %02X D: %02X E: %02X H: %02X L: %02X SP: %04X PC: %04X | %s",
|
||||
*length = snprintf(out, *length, "A: %02X F: %02X B: %02X C: %02X D: %02X E: %02X H: %02X L: %02X SP: %04X PC: %02X:%04X | %s",
|
||||
cpu->a, cpu->f.packed, cpu->b, cpu->c,
|
||||
cpu->d, cpu->e, cpu->h, cpu->l,
|
||||
cpu->sp, cpu->pc, disassembly);
|
||||
cpu->sp, cpu->memory.currentSegment(cpu, cpu->pc), cpu->pc, disassembly);
|
||||
}
|
||||
|
||||
bool LR35902DebuggerGetRegister(struct mDebuggerPlatform* d, const char* name, int32_t* value) {
|
||||
|
|
Loading…
Reference in New Issue