From 45e5fa84a59d5f9fbb65eb325d5fad7275c75760 Mon Sep 17 00:00:00 2001 From: Guillaume DIDIER Date: Wed, 3 Jul 2024 09:42:17 +0200 Subject: [PATCH] Fix missing CPU classification --- cache_slice/src/arch.rs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/cache_slice/src/arch.rs b/cache_slice/src/arch.rs index c6726d8..d9e6bf3 100644 --- a/cache_slice/src/arch.rs +++ b/cache_slice/src/arch.rs @@ -39,7 +39,17 @@ pub(crate) fn determine_cpu_class() -> Option { | (0x06, 0x4e) | (0x06, 0x5e) | (0x06, 0x8e) - | (0x06, 0x9e) => { + | (0x06, 0x9e) + | (0x06, 0xa5) + | (0x06, 0x66) + | (0x06, 0x7e) + | (0x06, 0x8c) + | (0x06, 0x8d) + | (0x06, 0xa7) + | (0x06, 0x9a) + | (0x06, 0x97) + | (0x06, 0xba) + | (0x06, 0xb7) => { Some(IntelCore) } _ => {