1// SPDX-License-Identifier: GPL-3.0-only
2//! Arch-Specific CPU instruction wrappers and tables such as TSS, GDT, IDT
3//!
4//! Authors: MarioS271
56pub(crate) mod tables;
7pub(crate) mod gs_info;
8pub(crate) mod instructions;
9pub(crate) mod state;
10pub(crate) mod userspace;