notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8cdf26
)
psxinterpreter: log bus error address
author
notaz
<notasas@gmail.com>
Sat, 22 Feb 2025 23:12:53 +0000
(
01:12
+0200)
committer
notaz
<notasas@gmail.com>
Sun, 23 Feb 2025 00:15:04 +0000
(
02:15
+0200)
libpcsxcore/psxinterpreter.c
patch
|
blob
|
blame
|
history
diff --git
a/libpcsxcore/psxinterpreter.c
b/libpcsxcore/psxinterpreter.c
index
e21e7ef
..
68d7932
100644
(file)
--- a/
libpcsxcore/psxinterpreter.c
+++ b/
libpcsxcore/psxinterpreter.c
@@
-756,6
+756,8
@@
static inline int checkLD(psxRegisters *regs, u32 addr, u32 m) {
return 0;
}
if (unlikely(BUS_LOCKED_ADDR(addr))) {
+ log_unhandled("bus error read addr=%08x @%08x ra=%08x\n",
+ addr, regs->pc - 4, regs->GPR.n.ra);
intException(regs, regs->pc - 4, R3000E_DBE << 2);
return 0;
}
@@
-779,6
+781,8
@@
static inline int checkST(psxRegisters *regs, u32 addr, u32 m) {
return 0;
}
if (unlikely(BUS_LOCKED_ADDR(addr))) {
+ log_unhandled("bus error write addr=%08x @%08x ra=%08x\n",
+ addr, regs->pc - 4, regs->GPR.n.ra);
intException(regs, regs->pc - 4, R3000E_DBE << 2);
return 0;
}