1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

Kernel: Introduce stages in Aarch64 CPU initialization phase

Dropping to each exception level is now more explicit.
This commit is contained in:
konrad 2023-01-07 21:21:22 +01:00 committed by Jelle Raaijmakers
parent c08f059340
commit 0f81fb03f2
4 changed files with 33 additions and 28 deletions

View file

@ -6,9 +6,11 @@
#pragma once
#include <AK/Types.h>
namespace Kernel {
void drop_to_exception_level_1();
void initialize_exceptions(u32 cpu);
void init_page_tables();
}