aboutsummaryrefslogtreecommitdiff
path: root/src/zenmonitor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenmonitor.c')
-rw-r--r--src/zenmonitor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/zenmonitor.c b/src/zenmonitor.c
index d02c510..3a64524 100644
--- a/src/zenmonitor.c
+++ b/src/zenmonitor.c
@@ -10,6 +10,7 @@
#define AMD_STRING "AuthenticAMD"
#define ZEN_FAMILY 0x17
+#define ZEN3_FAMILY 0x19
// AMD PPR = https://www.amd.com/system/files/TechDocs/54945_PPR_Family_17h_Models_00h-0Fh.pdf
@@ -31,7 +32,7 @@ gboolean check_zen() {
__get_cpuid(1, &eax, &ebx, &ecx, &edx);
ext_family = ((eax >> 8) & 0xF) + ((eax >> 20) & 0xFF);
- if (ext_family != ZEN_FAMILY){
+ if (ext_family != ZEN_FAMILY && ext_family != ZEN3_FAMILY){
return FALSE;
}