mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-24 01:43:22 +00:00
12 lines
244 B
Rust
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::*;
|