git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/sysinfo/cpuid/cpuid.go (about)

     1  // Copyright © 2018 Zlatko Čalušić
     2  //
     3  // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
     4  
     5  // Package cpuid gives Go programs access to CPUID opcode.
     6  package cpuid
     7  
     8  // CPUID returns processor identification and feature information.
     9  func CPUID(info *[4]uint32, ax uint32)