aboutsummaryrefslogtreecommitdiff
path: root/src/cpu.rs
blob: 62fcf998e278d3be09b47c75575e6dbcfb0028e8 (plain)
1
2
3
4
5
6
7
//! Processor code.
#[cfg(target_arch = "arm")]
#[path = "_arch/arm/cpu.rs"]
mod arch_cpu;
pub use arch_cpu::{wait_forever};

mod boot;