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