raw-cpuid 11.6.0

A library to parse the x86 CPUID instruction, written in rust with no external dependencies. The implementation closely resembles the Intel CPUID manual description. The library does only depend on libcore.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod i5_3337u;

mod i7_12700k;
mod ryzen_matisse;
mod xeon_gold_6252;

use crate::*;

#[test]
fn cpuid_impls_debug() {
    fn debug_required<T: Debug>(_t: T) {}

    debug_required(CpuId::new());
}