diff options
Diffstat (limited to 'hw/mips_timer.c')
-rw-r--r-- | hw/mips_timer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/mips_timer.c b/hw/mips_timer.c index d341e51657..bb3c3e4ec3 100644 --- a/hw/mips_timer.c +++ b/hw/mips_timer.c @@ -27,7 +27,7 @@ uint32_t cpu_mips_get_count (CPUState *env) else return env->CP0_Count + (uint32_t)muldiv64(qemu_get_clock(vm_clock), - TIMER_FREQ, ticks_per_sec); + TIMER_FREQ, get_ticks_per_sec()); } static void cpu_mips_timer_update(CPUState *env) @@ -37,8 +37,8 @@ static void cpu_mips_timer_update(CPUState *env) now = qemu_get_clock(vm_clock); wait = env->CP0_Compare - env->CP0_Count - - (uint32_t)muldiv64(now, TIMER_FREQ, ticks_per_sec); - next = now + muldiv64(wait, ticks_per_sec, TIMER_FREQ); + (uint32_t)muldiv64(now, TIMER_FREQ, get_ticks_per_sec()); + next = now + muldiv64(wait, get_ticks_per_sec(), TIMER_FREQ); qemu_mod_timer(env->timer, next); } @@ -50,7 +50,7 @@ void cpu_mips_store_count (CPUState *env, uint32_t count) /* Store new count register */ env->CP0_Count = count - (uint32_t)muldiv64(qemu_get_clock(vm_clock), - TIMER_FREQ, ticks_per_sec); + TIMER_FREQ, get_ticks_per_sec()); /* Update timer timer */ cpu_mips_timer_update(env); } @@ -75,7 +75,7 @@ void cpu_mips_stop_count(CPUState *env) { /* Store the current value */ env->CP0_Count += (uint32_t)muldiv64(qemu_get_clock(vm_clock), - TIMER_FREQ, ticks_per_sec); + TIMER_FREQ, get_ticks_per_sec()); } static void mips_timer_cb (void *opaque) |