diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-02 15:16:15 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-02 15:16:15 +0000 |
commit | ae022501f2a17f522b33db2af54ab42d7f456ce8 (patch) | |
tree | 885ed90ae5acc688713d17c366a63dcc3f9b657e /cpu-exec.c | |
parent | 899abcf5131ee7e433935a599ca3d22e51bf18ac (diff) | |
download | qemu-ae022501f2a17f522b33db2af54ab42d7f456ce8.zip qemu-ae022501f2a17f522b33db2af54ab42d7f456ce8.tar.gz qemu-ae022501f2a17f522b33db2af54ab42d7f456ce8.tar.bz2 |
soft irq are just irqs (Ralf Baechle)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1470 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -307,7 +307,7 @@ int cpu_exec(CPUState *env1) #elif defined(TARGET_MIPS) if ((interrupt_request & CPU_INTERRUPT_HARD) && (env->CP0_Status & (1 << CP0St_IE)) && - (env->CP0_Cause & 0x0000FC00) && + (env->CP0_Cause & 0x0000FF00) && !(env->hflags & MIPS_HFLAG_EXL) && !(env->hflags & MIPS_HFLAG_ERL) && !(env->hflags & MIPS_HFLAG_DM)) { |