mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-09-15 06:17:05 +00:00
target/arm: Set ID_PFR2.SSBS to 1 for max 32-bit CPU
Enable FEAT_SSBS for the "max" 32-bit CPU. Backports ed84a60ca80c403749c1fc1bab27c85d8edba39d
This commit is contained in:
parent
0f7620f7cc
commit
2e508af5d5
|
@ -2034,6 +2034,10 @@ static void arm_max_initfn(struct uc_struct *uc, Object *obj, void *opaque)
|
||||||
t = cpu->isar.id_pfr0;
|
t = cpu->isar.id_pfr0;
|
||||||
t = FIELD_DP32(t, ID_PFR0, DIT, 1);
|
t = FIELD_DP32(t, ID_PFR0, DIT, 1);
|
||||||
cpu->isar.id_pfr0 = t;
|
cpu->isar.id_pfr0 = t;
|
||||||
|
|
||||||
|
t = cpu->isar.id_pfr2;
|
||||||
|
t = FIELD_DP32(t, ID_PFR2, SSBS, 1);
|
||||||
|
cpu->isar.id_pfr2 = t;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue