ostd/arch/x86/kernel/
mod.rs

1// SPDX-License-Identifier: MPL-2.0
2
3//! Architecture kernel module.
4//
5// TODO: The purpose of this module is too ambiguous. We should split it up and move its submodules
6// to more suitable locations.
7
8pub(super) mod acpi;
9pub(super) mod apic;
10pub(super) mod tsc;
11
12pub use acpi::{ACPI_INFO, AcpiInfo};