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

pub mod control;
pub mod debug;
pub mod model_specific;
pub mod mxcsr;
pub mod rflags;
pub mod segmentation;
pub mod xcontrol;

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

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