1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Access to various system and model specific registers.

pub mod control;
pub mod model_specific;
pub mod rflags;
pub mod xcontrol;

#[cfg(feature = "instructions")]
pub use crate::instructions::segmentation::{rdfsbase, rdgsbase, wrfsbase, wrgsbase};

#[cfg(all(feature = "instructions", feature = "inline_asm"))]
pub use crate::instructions::read_rip;