mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-24 12:19:21 +01:00
Fix undefined instruction dump report
This commit is contained in:
parent
380c342890
commit
f3f78fab9f
@ -75,7 +75,7 @@ void exc_handler(u32 type, u32 spsr, u32 *regs)
|
||||
switch (type) {
|
||||
case 1: // undefined instruction
|
||||
gecko_printf("Undefined instruction @ %08x:\n%08x %08x *%08x* %08x %08x\n",
|
||||
pc, read32(pc-8), read32(pc-4), read32(pc), read32(pc), read32(pc+8));
|
||||
pc, read32(pc-8), read32(pc-4), read32(pc), read32(pc+4), read32(pc+8));
|
||||
break;
|
||||
case 3: // INSTR ABORT
|
||||
case 4: // DATA ABORT
|
||||
|
Loading…
Reference in New Issue
Block a user