From de8efb39c8076c92e29d5d62ef34cd61296c45bf Mon Sep 17 00:00:00 2001 From: Carter Li Date: Fri, 6 Sep 2024 14:11:57 +0800 Subject: [PATCH] CPU (ARM): add new microarchitectures --- src/detection/cpu/cpu_arm.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/detection/cpu/cpu_arm.h b/src/detection/cpu/cpu_arm.h index 4e882ae52..3ff408cd7 100644 --- a/src/detection/cpu/cpu_arm.h +++ b/src/detection/cpu/cpu_arm.h @@ -106,6 +106,9 @@ static const char* armPartId2name(uint32_t partId) case 0xd80: return "Cortex-A520"; case 0xd81: return "Cortex-A720"; case 0xd82: return "Cortex-X4"; + case 0xd84: return "Neoverse-V3"; + case 0xd85: return "Cortex-X925"; + case 0xd87: return "Cortex-A725"; default: return NULL; } }