From 7d35bf61ba7d08cc905555de61383a7da1845ffd Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Mon, 24 Nov 2025 08:21:37 +0100 Subject: [PATCH] Add cpuid for Apple M5 (from a PR to the archspec project) --- cpuid_arm64.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cpuid_arm64.c b/cpuid_arm64.c index 03b41d1c7..25df03c5e 100644 --- a/cpuid_arm64.c +++ b/cpuid_arm64.c @@ -405,6 +405,7 @@ int detect(void) if (value64 == 3660830781) return CPU_VORTEX; //A15/M2 if (value64 == 2271604202) return CPU_VORTEX; //A16/M3 if (value64 == 1867590060) return CPU_VORTEXM4; //M4 + if (value64 == 492472296) return CPU_VORTEXM4; //M5 #else #ifdef OS_WINDOWS HKEY reghandle;