(Xbox 1) Add SSE/MMX

This commit is contained in:
twinaphex 2018-02-17 19:59:26 +01:00
parent bf610ba2e6
commit 064ea5368e

View File

@ -649,6 +649,10 @@ uint64_t cpu_features_get(void)
if (sysctlbyname("hw.optional.neon", NULL, &len, NULL, 0) == 0) if (sysctlbyname("hw.optional.neon", NULL, &len, NULL, 0) == 0)
cpu |= RETRO_SIMD_NEON; cpu |= RETRO_SIMD_NEON;
#elif defined(XBOX1)
cpu |= RETRO_SIMD_MMX;
cpu |= RETRO_SIMD_SSE;
cpu |= RETRO_SIMD_MMXEXT;
#elif defined(CPU_X86) #elif defined(CPU_X86)
(void)avx_flags; (void)avx_flags;