Skip to main content

kernel/mem/
mod.rs

1// SPDX-License-Identifier: GPL-3.0-only
2//! Memory subsystem: physical memory manager, virtual memory manager, and heap allocator.
3//!
4//! Authors: MarioS271
5
6#[cfg(target_arch = "x86_64")] mod x86_64;
7#[cfg(target_arch = "x86_64")] pub(crate) use x86_64::*;
8
9pub(crate) mod pmm;
10pub(crate) mod heap;