1
0
mirror of https://github.com/henrydcase/nobs.git synced 2024-11-26 00:51:22 +00:00

fix: ebx -> ecx

This commit is contained in:
Henry Case 2020-10-03 05:42:20 +01:00
parent 24408329a5
commit 4f4cd6dbf9

View File

@ -26,8 +26,8 @@ func init() {
_, ecx, _, _ := cpuid(1, 0)
X86.HasAES = bitn(ecx, 25)
_, ebx, _, _ := cpuid(7, 0)
X86.HasBMI2 = bitn(ebx, 8)
X86.HasADX = bitn(ebx, 19)
X86.HasRDSEED = bitn(ebx, 18)
_, ecx, _, _ = cpuid(7, 0)
X86.HasBMI2 = bitn(ecx, 8)
X86.HasADX = bitn(ecx, 19)
X86.HasRDSEED = bitn(ecx, 18)
}