diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-07 18:14:41 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-07 18:14:41 +0000 |
commit | d537cf6c8624b27ce2b63431d2f8937f6356f652 (patch) | |
tree | d7173d79977b4426b2ff225b35c839c8a2e4a215 /hw/mips_timer.c | |
parent | b6e27ab8b12ef6075d85fc505f821643804a3a79 (diff) |
Unify IRQ handling.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2635 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/mips_timer.c')
-rw-r--r-- | hw/mips_timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/mips_timer.c b/hw/mips_timer.c index 9128cbff7d..bd89e5dee1 100644 --- a/hw/mips_timer.c +++ b/hw/mips_timer.c @@ -63,7 +63,7 @@ void cpu_mips_store_compare (CPUState *env, uint32_t value) cpu_mips_update_count(env, cpu_mips_get_count(env)); if ((env->CP0_Config0 & (0x7 << CP0C0_AR)) == (1 << CP0C0_AR)) env->CP0_Cause &= ~(1 << CP0Ca_TI); - cpu_mips_irq_request(env, 7, 0); + qemu_irq_lower(env->irq[7]); } static void mips_timer_cb (void *opaque) @@ -79,7 +79,7 @@ static void mips_timer_cb (void *opaque) cpu_mips_update_count(env, cpu_mips_get_count(env)); if ((env->CP0_Config0 & (0x7 << CP0C0_AR)) == (1 << CP0C0_AR)) env->CP0_Cause |= 1 << CP0Ca_TI; - cpu_mips_irq_request(env, 7, 1); + qemu_irq_raise(env->irq[7]); } void cpu_mips_clock_init (CPUState *env) |