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