mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
Fix incorrect PowerPC instruction fetch exception dump.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3517 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
0264592627
commit
f10c315f8f
1 changed files with 1 additions and 1 deletions
|
@ -785,7 +785,7 @@ void cpu_loop(CPUPPCState *env)
|
||||||
break;
|
break;
|
||||||
case POWERPC_EXCP_ISI: /* Instruction storage exception */
|
case POWERPC_EXCP_ISI: /* Instruction storage exception */
|
||||||
EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" ADDRX "\n",
|
EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" ADDRX "\n",
|
||||||
env->spr[SPR_DAR]);
|
env->spr[SPR_SRR0]);
|
||||||
/* XXX: check this */
|
/* XXX: check this */
|
||||||
switch (env->error_code & 0xFF000000) {
|
switch (env->error_code & 0xFF000000) {
|
||||||
case 0x40000000:
|
case 0x40000000:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue