diff options
Diffstat (limited to 'target-sparc/helper.c')
-rw-r--r-- | target-sparc/helper.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/target-sparc/helper.c b/target-sparc/helper.c index 12070b9246..6aca8fdcce 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -1412,34 +1412,3 @@ void cpu_dump_state(CPUState *env, FILE *f, #endif cpu_fprintf(f, "fsr: 0x%08x\n", env->fsr); } - -#ifdef TARGET_SPARC64 -#if !defined(CONFIG_USER_ONLY) -#include "qemu-common.h" -#include "hw/irq.h" -#include "qemu-timer.h" -#endif - -void helper_tick_set_count(void *opaque, uint64_t count) -{ -#if !defined(CONFIG_USER_ONLY) - ptimer_set_count(opaque, -count); -#endif -} - -uint64_t helper_tick_get_count(void *opaque) -{ -#if !defined(CONFIG_USER_ONLY) - return -ptimer_get_count(opaque); -#else - return 0; -#endif -} - -void helper_tick_set_limit(void *opaque, uint64_t limit) -{ -#if !defined(CONFIG_USER_ONLY) - ptimer_set_limit(opaque, -limit, 0); -#endif -} -#endif |