mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 23:01:02 +00:00
arm: use symbolic MDCR_TDE in arm_debug_target_el
We already have this symbol defined so lets use it. Backports commit b281ba4223c302c41ff8104152bfdd44de4fe798 from qemu
This commit is contained in:
parent
295dd866b4
commit
2a3edfce37
|
@ -2692,7 +2692,7 @@ static inline int arm_debug_target_el(CPUARMState *env)
|
|||
|
||||
if (arm_feature(env, ARM_FEATURE_EL2) && !secure) {
|
||||
route_to_el2 = env->cp15.hcr_el2 & HCR_TGE ||
|
||||
env->cp15.mdcr_el2 & (1 << 8);
|
||||
env->cp15.mdcr_el2 & MDCR_TDE;
|
||||
}
|
||||
|
||||
if (route_to_el2) {
|
||||
|
|
Loading…
Reference in a new issue