1// SPDX-License-Identifier: GPL-3.0-only 2//! x86_64 memory backend: PMM, VMM, ... 3//! 4//! Authors: MarioS271 5 6pub(crate) mod pmm; 7pub(crate) mod vmm; 8pub(crate) mod layout;