Message ID | 20240108143802.50256-6-deller@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [PULL,1/9] hw/hppa/machine: Allow up to 3840 MB total memory | expand |
diff --git a/target/hppa/op_helper.c b/target/hppa/op_helper.c index 7f607c3afd..60c9014242 100644 --- a/target/hppa/op_helper.c +++ b/target/hppa/op_helper.c @@ -353,7 +353,7 @@ target_ulong HELPER(probe)(CPUHPPAState *env, target_ulong addr, if (excp >= 0) { if (env->psw & PSW_Q) { /* ??? Needs tweaking for hppa64. */ - env->cr[CR_IOR] = addr; + env->cr[CR_IOR] = (uint32_t)addr; env->cr[CR_ISR] = addr >> 32; } if (excp == EXCP_DTLB_MISS) {