summaryrefslogtreecommitdiffstats
path: root/kernel/kernel.c
blob: 59caf0a0bd2f723eee5232743a00e9c07f0d5b06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "GlobalConstruct.h"
#include "../arch/x86/io/GlobalObj.h"
#include "../arch/x86/inc/TypeConverter.h"

void main()
{
    GlobalConstruct::terminalInit();
    GlobalConstruct::gdtInit();

    display << "Hello, World!";

};