Files
magenta/arch/x86_64/include/mango/machine/pmap.h
T

12 lines
192 B
C
Raw Normal View History

2024-11-02 11:31:51 +00:00
#ifndef MANGO_X86_64_PMAP_H_
#define MANGO_X86_64_PMAP_H_
#include <arch/paging.h>
2026-02-08 11:59:18 +00:00
#define ML_PMAP_INVALID ((uintptr_t)-1)
typedef pml4t_ptr_t ml_pmap_t;
typedef uint64_t ml_pfn_t;
#endif