x86_64/registers/
mod.rs

1//! Access to various system and model specific registers.
2
3pub mod control;
4pub mod debug;
5pub mod model_specific;
6pub mod mxcsr;
7pub mod rflags;
8pub mod segmentation;
9pub mod xcontrol;
10
11#[cfg(all(feature = "instructions", target_arch = "x86_64"))]
12pub use crate::instructions::read_rip;