aboutsummaryrefslogtreecommitdiff
path: root/src/cpu.rs
blob: 26efd52471c7fec8998d42ea4011f75f669063c7 (plain)
1
2
3
4
5
6
7
8
9
10
//! # Processor code.
#[cfg(target_arch = "arm")]
#[path = "_arch/arm/cpu.rs"]
mod arch_cpu;
mod boot;

/// # Low-level bindings
///
/// Re-export low-level bindings
pub use arch_cpu::{nop,wait_forever,spin_for_n_cycles,load32,store32};