forked from AbleOS/ableos
7 lines
126 B
Rust
7 lines
126 B
Rust
|
//! Architecture-specific code.
|
||
|
|
||
|
/// X86 specific code
|
||
|
#[cfg(target_arch = "x86_64")]
|
||
|
#[path = "x86_64/mod.rs"]
|
||
|
pub mod arch;
|