Debugger: Fix long disassemblies

This commit is contained in:
Vicki Pfau 2018-05-12 09:47:25 -07:00
parent dadcf40ee2
commit ee3969ad02
3 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ static void _disassembleMode(struct CLIDebugger* debugger, struct CLIDebugVector
static inline uint32_t _printLine(struct CLIDebugger* debugger, uint32_t address, enum ExecutionMode mode) {
struct CLIDebuggerBackend* be = debugger->backend;
char disassembly[48];
char disassembly[64];
struct ARMInstructionInfo info;
be->printf(be, "%08X: ", address);
if (mode == MODE_ARM) {

View File

@ -8,7 +8,7 @@
#include <mgba/internal/arm/decoder-inlines.h>
#define ADVANCE(AMOUNT) \
if (AMOUNT > blen) { \
if (AMOUNT >= blen) { \
buffer[blen - 1] = '\0'; \
return total; \
} \

View File

@ -409,7 +409,7 @@ size_t LR35902Decode(uint8_t opcode, struct LR35902InstructionInfo* info) {
}
#define ADVANCE(AMOUNT) \
if (AMOUNT > blen) { \
if (AMOUNT >= blen) { \
buffer[blen - 1] = '\0'; \
return total; \
} \