Files
asterinas/framework/aster-frame/src/arch/mod.rs
2024-06-09 22:57:14 +08:00

12 lines
244 B
Rust

// SPDX-License-Identifier: MPL-2.0
//! Platform-specific code.
//!
//! Each architecture that Asterinas supports may contain a submodule here.
#[cfg(target_arch = "x86_64")]
pub mod x86;
#[cfg(target_arch = "x86_64")]
pub use self::x86::*;