1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-07-02 14:04:15 +00:00

Tests: add amd_fn8000001dh subleaf

See e562798cec
This commit is contained in:
Xorg 2020-05-09 22:48:07 +02:00
parent 3a346d4d72
commit 6b5a1f5ea6
No known key found for this signature in database
GPG key ID: 1E55EE2EFF18BC1A
5 changed files with 136 additions and 7293 deletions

View file

@ -12,7 +12,7 @@ if len(args) != 3:
def readRawFile():
rawdata = []
for line in open(args[1], "rt").readlines():
lookfor = ["basic_cpuid", "ext_cpuid", "intel_fn4", "intel_fn11"]
lookfor = ["basic_cpuid", "ext_cpuid", "intel_fn4", "intel_fn11", "amd_fn8000001dh"]
good = False
for match in lookfor:
if line.find(match) != -1: