aboutsummaryrefslogtreecommitdiff
path: root/src/cpu.rs
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-08-19 21:22:18 -0700
committerChristian Cunningham <cc@localhost>2022-08-19 21:22:18 -0700
commit26ab71043d97c1b06bdd252378b64171cb95b1a9 (patch)
tree9bea25574fc20e77a4faae6811add97e0a248175 /src/cpu.rs
parent0d061dac9e31831e4fe426a0df777463043868d7 (diff)
Updated docs
Diffstat (limited to 'src/cpu.rs')
-rw-r--r--src/cpu.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/cpu.rs b/src/cpu.rs
index 9f003f8..26efd52 100644
--- a/src/cpu.rs
+++ b/src/cpu.rs
@@ -1,7 +1,10 @@
-//! Processor code.
+//! # 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;
+
+/// # Low-level bindings
+///
+/// Re-export low-level bindings
+pub use arch_cpu::{nop,wait_forever,spin_for_n_cycles,load32,store32};