aboutsummaryrefslogtreecommitdiffstats
path: root/target-sh4
diff options
context:
space:
mode:
authorAlexandre Courbot <gnurou@gmail.com>2011-01-25 14:00:14 +0900
committerAurelien Jarno <aurelien@aurel32.net>2011-01-25 08:36:30 +0100
commitbec43cc3b61d025841d550800d3835986446061d (patch)
tree0d55eb6857821e0cfe7b53ef83cea3c10e8ab096 /target-sh4
parente40a67beeda6aa6e735546e9f08f3db41e23592a (diff)
target-sh4: fix index of address read error exception
Exception index of address read error should be 0x0e0. Signed-off-by: Alexandre Courbot <gnurou@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-sh4')
-rw-r--r--target-sh4/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-sh4/helper.c b/target-sh4/helper.c
index bee05274f..19b309b4f 100644
--- a/target-sh4/helper.c
+++ b/target-sh4/helper.c
@@ -479,7 +479,7 @@ int cpu_sh4_handle_mmu_fault(CPUState * env, target_ulong address, int rw,
break;
case MMU_IADDR_ERROR:
case MMU_DADDR_ERROR_READ:
- env->exception_index = 0x0c0;
+ env->exception_index = 0x0e0;
break;
case MMU_DADDR_ERROR_WRITE:
env->exception_index = 0x100;