mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:34:59 +00:00
18 lines
285 B
C++
18 lines
285 B
C++
/*
|
|
* Copyright (c) 2021, James Mintram <me@jamesrm.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Prekernel {
|
|
|
|
void drop_to_exception_level_1();
|
|
void init_prekernel_page_tables();
|
|
|
|
[[noreturn]] void panic(char const* msg);
|
|
|
|
[[noreturn]] void halt();
|
|
|
|
}
|