1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

Kernel: Move PAGE_MASK define to the shared CPU.h header

These are the same for both x86 and aarch64 for now. Also update some
include paths to use the generic CPU.h header.
This commit is contained in:
Timon Kruiper 2022-10-25 18:34:38 +02:00 committed by Gunnar Beutner
parent 5cc190ad70
commit a47271ebdc
6 changed files with 10 additions and 11 deletions

View file

@ -5,7 +5,7 @@
*/
#include <AK/Assertions.h>
#include <Kernel/Arch/x86/CPU.h>
#include <Kernel/Arch/CPU.h>
#include <Kernel/Panic.h>
#include <Kernel/Process.h>