summaryrefslogtreecommitdiff
path: root/kernel/src/arch/mod.rs
diff options
context:
space:
mode:
authorNathan Ringo <nathan@remexre.com>2024-09-01 19:59:44 -0500
committerNathan Ringo <nathan@remexre.com>2024-09-01 19:59:44 -0500
commit386df39c9866a4d945de46ef0dcab2363c674e0e (patch)
treec0572ce6a2c81c93546210f599dff553783c5760 /kernel/src/arch/mod.rs
parent6b98b6afea6e790abe738a67aa28bab54c91afe0 (diff)
Move almost all the kernel into crates/.
Diffstat (limited to 'kernel/src/arch/mod.rs')
-rw-r--r--kernel/src/arch/mod.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/kernel/src/arch/mod.rs b/kernel/src/arch/mod.rs
deleted file mode 100644
index d23dd81..0000000
--- a/kernel/src/arch/mod.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-cfg_if::cfg_if! {
- if #[cfg(not(target_os = "none"))] {
- mod hosted;
- pub use self::hosted::*;
- } else if #[cfg(target_arch = "riscv64")] {
- mod riscv64;
- pub use self::riscv64::*;
- }
-}