summaryrefslogtreecommitdiff
path: root/qemu/hw/mips_timer.c
diff options
context:
space:
mode:
authorths <ths>2007-01-24 01:47:51 +0000
committerths <ths>2007-01-24 01:47:51 +0000
commit30a6839dbc134f3a5784595c565595b2fcf8880e (patch)
treecfd2ab79524068c0ebe440751a7da75232473130 /qemu/hw/mips_timer.c
parent7cf7dc06b795acc26c74ccfbf2f20673ee3d3608 (diff)
Reworking MIPS interrupt handling, by Aurelien Jarno.
Diffstat (limited to 'qemu/hw/mips_timer.c')
-rw-r--r--qemu/hw/mips_timer.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/qemu/hw/mips_timer.c b/qemu/hw/mips_timer.c
index 251324d7..bc83036b 100644
--- a/qemu/hw/mips_timer.c
+++ b/qemu/hw/mips_timer.c
@@ -57,8 +57,7 @@ void cpu_mips_store_count (CPUState *env, uint32_t value)
void cpu_mips_store_compare (CPUState *env, uint32_t value)
{
cpu_mips_update_count(env, cpu_mips_get_count(env), value);
- env->CP0_Cause &= ~0x00008000;
- cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
+ cpu_mips_irq_request(env, 7, 0);
}
static void mips_timer_cb (void *opaque)
@@ -72,8 +71,7 @@ static void mips_timer_cb (void *opaque)
}
#endif
cpu_mips_update_count(env, cpu_mips_get_count(env), env->CP0_Compare);
- env->CP0_Cause |= 0x00008000;
- cpu_interrupt(env, CPU_INTERRUPT_HARD);
+ cpu_mips_irq_request(env, 7, 1);
}
void cpu_mips_clock_init (CPUState *env)