Move consts to arch

This commit is contained in:
Jeremy Soller
2021-01-12 19:57:42 -07:00
parent ed55b49093
commit 6c4c19a95c
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,9 @@
#[macro_use]
pub mod macros;
/// Constants like memory locations
pub mod consts;
/// Debugging support
pub mod debug;

View File

@@ -86,9 +86,6 @@ pub use crate::arch::*;
use crate::log::info;
/// Constants like memory locations
pub mod consts;
/// Heap allocators
pub mod allocator;