mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-17 08:38:17 +00:00
Now that we merged all the Prekernel files into the Kernel files, we can get rid of the Prekernel namespace as well.
17 lines
255 B
C++
17 lines
255 B
C++
/*
|
|
* Copyright (c) 2018-2022, James Mintram <me@jamesrm.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define PAGE_MASK (~(FlatPtr)0xfffu)
|
|
|
|
namespace Kernel {
|
|
|
|
void drop_to_exception_level_1();
|
|
void init_prekernel_page_tables();
|
|
|
|
}
|