aboutsummaryrefslogtreecommitdiff
path: root/src/cpu.rs
blob: 9f003f8d03973b9767df6c4903aae602d5a0a761 (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::{nop,wait_forever,spin_for_n_cycles,load32,store32};

mod boot;