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 debug;
pub mod model_specific;
pub mod mxcsr;
pub mod rflags;
pub mod segmentation;
pub mod xcontrol;

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