This commit is contained in:
Serge
2024-10-04 12:11:09 +02:00
parent 3c241cafba
commit 42ac2d627c
2 changed files with 6 additions and 1 deletions

View File

@@ -143,6 +143,11 @@ namespace Ryzen
return CPUName.Contains("AMD") || CPUName.Contains("Ryzen") || CPUName.Contains("Athlon") || CPUName.Contains("Radeon") || CPUName.Contains("AMD Custom APU 0405");
}
public static bool IsSupportedPower()
{
return IsAMD() && FAMID < 12;
}
public static bool IsSupportedUV()
{
if (CPUName.Length == 0) Init();