ソースを参照

fix: ebx -> ecx (#46)

kris/switch_to_rust
Henry Case 4年前
committed by GitHub
コミット
adfaf1e58c
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更4行の追加4行の削除
  1. +4
    -4
      utils/cpuid_amd64.go

+ 4
- 4
utils/cpuid_amd64.go ファイルの表示

@@ -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)
}

読み込み中…
キャンセル
保存