blob: f178f423bbdcf67dd802d34cdec643b75dfb3d82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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"
#define LOAD_GDT() asm("call load_gdt")
|