mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
target/hppa: Remove TARGET_REGISTER_BITS
Rely only on TARGET_LONG_BITS, fixed at 64, and hppa_is_pa20. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
a4529fa83b
commit
c53e401ed9
11 changed files with 135 additions and 299 deletions
|
@ -24,7 +24,7 @@
|
|||
#include "qemu/timer.h"
|
||||
#include "sysemu/runstate.h"
|
||||
|
||||
void HELPER(write_interval_timer)(CPUHPPAState *env, target_ureg val)
|
||||
void HELPER(write_interval_timer)(CPUHPPAState *env, target_ulong val)
|
||||
{
|
||||
HPPACPU *cpu = env_archcpu(env);
|
||||
uint64_t current = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
|
||||
|
@ -58,7 +58,7 @@ void HELPER(reset)(CPUHPPAState *env)
|
|||
helper_excp(env, EXCP_HLT);
|
||||
}
|
||||
|
||||
target_ureg HELPER(swap_system_mask)(CPUHPPAState *env, target_ureg nsm)
|
||||
target_ulong HELPER(swap_system_mask)(CPUHPPAState *env, target_ulong nsm)
|
||||
{
|
||||
target_ulong psw = env->psw;
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue