Fix MIPS counter / compare interrupt (Ralf Baechle
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1550 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
4b7df22f91
commit
c96a29cdef
@ -72,7 +72,8 @@ 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);
|
||||
pic_set_irq(5, 0);
|
||||
cpu_single_env->CP0_Cause &= ~0x00008000;
|
||||
cpu_reset_interrupt(cpu_single_env, CPU_INTERRUPT_HARD);
|
||||
}
|
||||
|
||||
static void mips_timer_cb (void *opaque)
|
||||
@ -86,7 +87,8 @@ static void mips_timer_cb (void *opaque)
|
||||
}
|
||||
#endif
|
||||
cpu_mips_update_count(env, cpu_mips_get_count(env), env->CP0_Compare);
|
||||
pic_set_irq(5, 1);
|
||||
cpu_single_env->CP0_Cause |= 0x00008000;
|
||||
cpu_interrupt(cpu_single_env, CPU_INTERRUPT_HARD);
|
||||
}
|
||||
|
||||
void cpu_mips_clock_init (CPUState *env)
|
||||
|
Loading…
Reference in New Issue
Block a user