mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
da88d766b2
This commits inserts TODOs into all necessary places to make the kernel compile on riscv64!
20 lines
475 B
C
20 lines
475 B
C
/*
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, Timon Kruiper <timonkruiper@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Platform.h>
|
|
|
|
#if ARCH(X86_64)
|
|
# include <Kernel/Arch/x86_64/PageDirectory.h>
|
|
#elif ARCH(AARCH64)
|
|
# include <Kernel/Arch/aarch64/PageDirectory.h>
|
|
#elif ARCH(RISCV64)
|
|
# include <Kernel/Arch/riscv64/PageDirectory.h>
|
|
#else
|
|
# error "Unknown architecture"
|
|
#endif
|