GBA: Reshuffle Wii U VC opcode log

This commit is contained in:
Vicki Pfau 2020-07-17 02:55:47 -07:00
parent 78524ee078
commit 5b319cfd91
1 changed files with 4 additions and 4 deletions

View File

@ -734,14 +734,14 @@ void GBAHitStub(struct ARMCore* cpu, uint32_t opcode) {
void GBAIllegal(struct ARMCore* cpu, uint32_t opcode) {
struct GBA* gba = (struct GBA*) cpu->master;
if (cpu->executionMode == MODE_THUMB && (opcode & 0xFFC0) == 0xE800) {
mLOG(GBA, INFO, "Hit Wii U VC opcode: %08x", opcode);
return;
}
if (!gba->yankedRomSize) {
// TODO: More sensible category?
mLOG(GBA, WARN, "Illegal opcode: %08x", opcode);
}
if (cpu->executionMode == MODE_THUMB && (opcode & 0xFFC0) == 0xE800) {
mLOG(GBA, DEBUG, "Hit Wii U VC opcode: %08x", opcode);
return;
}
#ifdef USE_DEBUGGERS
if (gba->debugger) {
struct mDebuggerEntryInfo info = {