pudding_kernel/
cpu.rs

1//#![allow(unused_imports)]
2
3//#[cfg(all(not(feature = "std"), target_arch = "x86_64"))]
4//pub mod x86_64;
5//#[cfg(all(not(feature = "std"), target_arch = "x86_64"))]
6//pub use x86_64::*;
7
8#[cfg(all(not(feature = "std"), target_arch = "arm"))]
9pub mod arm;
10#[cfg(all(not(feature = "std"), target_arch = "arm"))]
11pub use arm::*;
12
13#[cfg(any(feature = "std", not(any(target_arch = "x86_64", target_arch = "arm"))))]
14pub mod dummy;
15#[allow(unused_imports)]
16#[cfg(any(feature = "std", not(any(target_arch = "x86_64", target_arch = "arm"))))]
17pub use dummy::*;