aboutsummaryrefslogtreecommitdiff
path: root/src/cpu.rs
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-08-17 22:14:15 -0700
committerChristian Cunningham <cc@localhost>2022-08-17 22:14:15 -0700
commit91d0ae783e51062f77b120b05c97cd352b9b86d5 (patch)
tree0270dfe976f91c11e62bb960420b366c08545d6f /src/cpu.rs
Initial commit
Diffstat (limited to 'src/cpu.rs')
-rw-r--r--src/cpu.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cpu.rs b/src/cpu.rs
new file mode 100644
index 0000000..62fcf99
--- /dev/null
+++ b/src/cpu.rs
@@ -0,0 +1,7 @@
+//! Processor code.
+#[cfg(target_arch = "arm")]
+#[path = "_arch/arm/cpu.rs"]
+mod arch_cpu;
+pub use arch_cpu::{wait_forever};
+
+mod boot;