x86/bits64/
mod.rs

1//! Data structures and functions used by IA-32e but not Protected Mode.
2
3pub mod paging;
4#[cfg(target_arch = "x86_64")]
5pub mod registers;
6pub mod rflags;
7pub mod segmentation;
8#[cfg(target_arch = "x86_64")]
9pub mod sgx;
10pub mod syscall;
11pub mod task;
12#[cfg(target_arch = "x86_64")]
13pub mod vmx;