1 2 3 4 5 6 7 8 9
//! CPU family detection helpers for x86_64/AMD64 CPUs. mod amd; mod generic; mod intel; pub use amd::*; pub use generic::*; pub use intel::*;