Backward compatibility to enable full 64bits address space

This commit is contained in:
lazymio 2022-02-12 22:54:21 +01:00
parent 81eb7da837
commit 52e0963cc7
No known key found for this signature in database
GPG Key ID: DFF27E34A47CB873

View File

@ -378,6 +378,9 @@ ARMCPU *cpu_aarch64_init(struct uc_struct *uc)
}
}
// Backward compatability to enable FULL 64bits address space.
env->pstate = PSTATE_MODE_EL1h;
arm_rebuild_hflags(env);
return cpu;