diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2017-12-28 17:50:14 -0800 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2018-01-30 10:22:26 -0800 |
commit | 49c29d6c2e8ce2d3cddf9a92452d1ccb78051517 (patch) | |
tree | 08f9b4ec746793d61e0b7859f1224746138acfbd /target/hppa/cpu.h | |
parent | 4f5f254808e1e317b407275724df7794a270c5c1 (diff) |
target/hppa: Implement the interval timer
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/hppa/cpu.h')
-rw-r--r-- | target/hppa/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/hppa/cpu.h b/target/hppa/cpu.h index 586ea1e555..3782e1d834 100644 --- a/target/hppa/cpu.h +++ b/target/hppa/cpu.h @@ -234,6 +234,7 @@ struct HPPACPU { /*< public >*/ CPUHPPAState env; + QEMUTimer *alarm_timer; }; static inline HPPACPU *hppa_env_get_cpu(CPUHPPAState *env) @@ -342,6 +343,7 @@ int hppa_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int size, int hppa_get_physical_address(CPUHPPAState *env, vaddr addr, int mmu_idx, int type, hwaddr *pphys, int *pprot); extern const MemoryRegionOps hppa_io_eir_ops; +void hppa_cpu_alarm_timer(void *); #endif #endif /* HPPA_CPU_H */ |