mirror of
https://github.com/RGBCube/serenity
synced 2026-01-21 01:31:01 +00:00
These are the same for both x86 and aarch64 for now. Also update some include paths to use the generic CPU.h header.
14 lines
207 B
C++
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();
|
|
|
|
}
|