Fix core assignment for Intel family 15

This commit is contained in:
Martin Kroeker 2024-07-09 20:22:56 +02:00 committed by GitHub
parent e1eef56e05
commit e706bc1ec0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -2392,10 +2392,10 @@ int get_coretype(void){
else
return CORE_NEHALEM;
}
case 15:
if (model <= 0x2) return CORE_NORTHWOOD;
else return CORE_PRESCOTT;
}
case 15:
if (model <= 0x2) return CORE_NORTHWOOD;
else return CORE_PRESCOTT;
}
}