aboutsummaryrefslogtreecommitdiff
path: root/sim/i960/traps.c
diff options
context:
space:
mode:
Diffstat (limited to 'sim/i960/traps.c')
-rw-r--r--sim/i960/traps.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sim/i960/traps.c b/sim/i960/traps.c
index 5b62ca1..570fc95 100644
--- a/sim/i960/traps.c
+++ b/sim/i960/traps.c
@@ -23,8 +23,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
/* The semantic code invokes this for illegal (unrecognized) instructions. */
-void
-sim_engine_invalid_insn (SIM_CPU *current_cpu, IADDR cia)
+SEM_PC
+sim_engine_invalid_insn (SIM_CPU *current_cpu, IADDR cia, SEM_PC vpc)
{
SIM_DESC sd = CPU_STATE (current_cpu);
@@ -46,6 +46,7 @@ sim_engine_invalid_insn (SIM_CPU *current_cpu, IADDR cia)
else
#endif
sim_engine_halt (sd, current_cpu, NULL, cia, sim_stopped, SIM_SIGILL);
+ return vpc;
}
/* Process an address exception. */