diff options
Diffstat (limited to 'target-mips/helper.c')
-rw-r--r-- | target-mips/helper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-mips/helper.c b/target-mips/helper.c index 8d9435a232..909db5d37f 100644 --- a/target-mips/helper.c +++ b/target-mips/helper.c @@ -379,6 +379,9 @@ void do_interrupt (CPUState *env) case EXCP_TRAP: cause = 13; goto set_EPC; + case EXCP_FPE: + cause = 15; + goto set_EPC; case EXCP_LTLBL: cause = 1; goto set_EPC; |