Files
mango/arch/x86_64/include/kernel/machine/pmap.h
2026-02-19 19:13:44 +00:00

12 lines
194 B
C

#ifndef KERNEL_X86_64_PMAP_H_
#define KERNEL_X86_64_PMAP_H_
#include <arch/paging.h>
#define ML_PMAP_INVALID ((uintptr_t)-1)
typedef pml4t_ptr_t ml_pmap_t;
typedef uint64_t ml_pfn_t;
#endif