blob: 79975a3db0a7fad7ac6d6dc9b963e4cd9a40e6e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#define VERSION_MAJOR 0
#define VERSION_MINOR 1
#define VERSION_PATH 0
#include "core/types.hpp"
#include "core/paging.hpp"
#include "libs/math.hpp"
#include "libs/stdio.hpp"
#include "libs/string.hpp"
/// @brief Various variables from the linker
extern u64 kernel_vma,stack_pma,userspace_pma;
/// @brief Binary references
extern u64 res_binary_res_terminus_psf_start;
extern u64 res_binary_res_terminus_psf_end;
|