diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index e10f1dab3a..100ece186e 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2002-09-26 Jim Wilson + + * simops (OP_10007E0): Don't subtract 4 from PC. + 2002-09-19 Nick Clifton * interp.c (sim_open): Remove reference to v850ea. diff --git a/sim/v850/simops.c b/sim/v850/simops.c index d8a4d58ae1..eba728fa28 100644 --- a/sim/v850/simops.c +++ b/sim/v850/simops.c @@ -1880,7 +1880,7 @@ OP_10007E0 () ECR |= 0x40 + OP[0]; /* Flag that we are now doing exception processing. */ PSW |= PSW_EP | PSW_ID; - PC = ((OP[0] < 0x10) ? 0x40 : 0x50) - 4; + PC = (OP[0] < 0x10) ? 0x40 : 0x50; return 0; }