1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-21 22:01:00 +00:00
serenity/Kernel/Arch/aarch64/CPU.h
Timon Kruiper a47271ebdc 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.
2022-10-26 20:01:45 +02:00

14 lines
207 B
C++

/*
* Copyright (c) 2018-2022, James Mintram <me@jamesrm.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Kernel {
void drop_to_exception_level_1();
void init_page_tables();
}