aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/mod.rs')
-rw-r--r--src/cpu/mod.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cpu/mod.rs b/src/cpu/mod.rs
new file mode 100644
index 0000000..1a3fbc5
--- /dev/null
+++ b/src/cpu/mod.rs
@@ -0,0 +1,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::*;