Files
ladybird/Kernel/Arch/aarch64/Prekernel.h
2022-04-01 21:24:45 +01:00

19 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();
}