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