mirror of https://github.com/mgba-emu/mgba.git
GBA: Reshuffle Wii U VC opcode log
This commit is contained in:
parent
78524ee078
commit
5b319cfd91
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue