From 36137438446c1754a522c5b3cc3aff92c43ac1ee Mon Sep 17 00:00:00 2001 From: Aleksa Vuckovic Date: Wed, 13 Dec 2023 01:38:14 +0100 Subject: Initial commit X86/X86_64 debug/release WORKING riscv64 WORKING uart idk --- src/arch/x86/mod.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/arch/x86/mod.rs (limited to 'src/arch/x86/mod.rs') diff --git a/src/arch/x86/mod.rs b/src/arch/x86/mod.rs new file mode 100644 index 0000000..c47ad74 --- /dev/null +++ b/src/arch/x86/mod.rs @@ -0,0 +1,10 @@ +#[cfg(target_arch = "x86")] +mod common; +#[cfg(target_arch = "x86")] +pub use common::*; + +#[cfg(target_arch = "x86_64")] +pub mod common; + +mod once; +pub use once::*; -- cgit v1.2.3