//! GDT segment selectors pub const KERNEL_CODE: u16 = 0x08; pub const KERNEL_DATA: u16 = 0x10; pub const USER_DATA: u16 = 0x18; pub const USER_CODE: u16 = 0x20; pub const TSS_SEGMENT: u16 = 0x28;