ostd 0.17.2

Rust OS framework that facilitates the development of and innovation in OS kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MPL-2.0

//! Architecture kernel module.
//
// TODO: The purpose of this module is too ambiguous. We should split it up and move its submodules
// to more suitable locations.

pub(super) mod acpi;
pub(super) mod apic;
pub(super) mod tsc;

pub use acpi::{ACPI_INFO, AcpiInfo};