mirror of
https://github.com/henrydcase/nobs.git
synced 2024-11-22 23:28:57 +00:00
12 lines
150 B
Go
12 lines
150 B
Go
|
package utils
|
||
|
|
||
|
type x86 struct {
|
||
|
// Signals support for MULX which is in BMI2
|
||
|
HasBMI2 bool
|
||
|
|
||
|
// Signals support for ADX
|
||
|
HasADX bool
|
||
|
}
|
||
|
|
||
|
var X86 x86
|