Kernel: Move page macros to Types.h

This commit is contained in:
Bananymous
2023-05-28 21:03:08 +03:00
parent 833642d405
commit ec73db0057
2 changed files with 31 additions and 32 deletions

View File

@@ -1,6 +1,8 @@
#pragma once
#define PAGE_SIZE 4096
#define PAGE_FLAG_MASK ((uintptr_t)0xFFF)
#define PAGE_ADDR_MASK (~PAGE_FLAG_MASK)
namespace Kernel
{