diff options
Diffstat (limited to 'Kernel/API/MemoryLayout.h')
-rw-r--r-- | Kernel/API/MemoryLayout.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Kernel/API/MemoryLayout.h b/Kernel/API/MemoryLayout.h new file mode 100644 index 0000000000..97db070c10 --- /dev/null +++ b/Kernel/API/MemoryLayout.h @@ -0,0 +1,12 @@ +/* + * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org> + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#pragma once + +#include <AK/Types.h> +#include <Kernel/Sections.h> + +constexpr FlatPtr userspace_range_base = USER_RANGE_BASE; |