aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/mod.rs
blob: 1a3fbc502560e98451cfee42617e7eee711ae5e8 (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::*;