mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 09:22:30 +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(const char* msg);
|
|
|
|
[[noreturn]] void halt();
|
|
|
|
}
|