1// SPDX-License-Identifier: GPL-3.0-only 2//! x86_64 descriptor tables: TSS, GDT, and IDT. 3//! 4//! Authors: MarioS271 5 6pub(crate) mod tss; 7pub(crate) mod gdt; 8pub(crate) mod idt;