diff options
Diffstat (limited to 'sim/cr16/interp.c')
-rw-r--r-- | sim/cr16/interp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/cr16/interp.c b/sim/cr16/interp.c index cdbbb2a..86c4c0d 100644 --- a/sim/cr16/interp.c +++ b/sim/cr16/interp.c @@ -1417,18 +1417,18 @@ sim_stop_reason (sd, reason, sigrc) case SIG_CR16_BUS: *reason = sim_stopped; - *sigrc = TARGET_SIGNAL_BUS; + *sigrc = GDB_SIGNAL_BUS; break; // // case SIG_CR16_IAD: // *reason = sim_stopped; -// *sigrc = TARGET_SIGNAL_IAD; +// *sigrc = GDB_SIGNAL_IAD; // break; default: /* some signal */ *reason = sim_stopped; if (stop_simulator && !State.exception) - *sigrc = TARGET_SIGNAL_INT; + *sigrc = GDB_SIGNAL_INT; else *sigrc = State.exception; break; |