1// SPDX-License-Identifier: GPL-3.0-only 2//! x86_64-specific code 3//! 4//! Authors: MarioS271 5 6pub(crate) mod cpu; 7pub(crate) mod boot; 8pub(crate) mod drivers; 9pub(crate) mod interrupts; 10pub(crate) mod mm; 11pub(crate) mod syscall;