mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Vero4k doesn't report its NEON support - so check for underlying Arm Cortex-A53.
This commit is contained in:
parent
6227537949
commit
b9c7181808
1 changed files with 3 additions and 0 deletions
|
@ -324,6 +324,9 @@ void CPUInfo::Detect()
|
|||
unsigned short CPUPart = GetCPUPart();
|
||||
if (GetCPUImplementer() == 0x51 && (CPUPart == 0x4D || CPUPart == 0x6F))
|
||||
bIDIVa = bIDIVt = true;
|
||||
// Vero4k supports NEON but doesn't report it. Check for Arm Cortex-A53.
|
||||
if (GetCPUImplementer() == 0x41 && CPUPart == 0xd03)
|
||||
bNEON = true;
|
||||
// These two require ARMv8 or higher
|
||||
bFP = CheckCPUFeature("fp");
|
||||
bASIMD = CheckCPUFeature("asimd");
|
||||
|
|
Loading…
Add table
Reference in a new issue