aboutsummaryrefslogtreecommitdiff
path: root/src/bits64/mod.rs
blob: 9b13e9d45e2f2b4400d0392b5b0ad22d51efe76f (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;
#[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;