Fix two small consistency issues

This commit is contained in:
Jeffrey Pfau 2014-10-23 01:45:16 -07:00
parent d3b78b2fd2
commit 768316a8d3
2 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@ static void _printBin(struct CLIDebugger* debugger, struct DebugVector* dv) {
printf(" 0b");
int i = 32;
while (i--) {
printf("%u", (dv->intValue >> i) & 1);
printf(" %u", (dv->intValue >> i) & 1);
}
}
printf("\n");

View File

@ -227,7 +227,7 @@ void GBASwi16(struct ARMCore* cpu, int immediate) {
_MidiKey2Freq(gba);
break;
default:
GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02x", immediate);
GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02X", immediate);
}
}