2021-03-07 20:28:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2022-09-21 13:26:27 +00:00
|
|
|
* Copyright (c) 2022, Timon Kruiper <timonkruiper@gmail.com>
|
2021-03-07 20:28:28 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-03-07 20:28:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-12-01 17:14:03 +00:00
|
|
|
#include <AK/Platform.h>
|
|
|
|
|
2022-10-04 00:05:54 +00:00
|
|
|
#if ARCH(X86_64)
|
2022-10-04 10:46:11 +00:00
|
|
|
# include <Kernel/Arch/x86_64/PageDirectory.h>
|
2022-09-21 13:26:27 +00:00
|
|
|
#elif ARCH(AARCH64)
|
|
|
|
# include <Kernel/Arch/aarch64/PageDirectory.h>
|
|
|
|
#else
|
|
|
|
# error "Unknown architecture"
|
|
|
|
#endif
|