diff options
Diffstat (limited to 'hw')
-rw-r--r-- | hw/mips_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips_timer.c b/hw/mips_timer.c index bb3c3e4..6bae90b 100644 --- a/hw/mips_timer.c +++ b/hw/mips_timer.c @@ -103,7 +103,7 @@ static void mips_timer_cb (void *opaque) void cpu_mips_clock_init (CPUState *env) { - env->timer = qemu_new_timer(vm_clock, &mips_timer_cb, env); + env->timer = qemu_new_timer_ns(vm_clock, &mips_timer_cb, env); env->CP0_Compare = 0; cpu_mips_store_count(env, 1); } |