summaryrefslogtreecommitdiffstats
path: root/kernel/kernel.c
blob: 3d9a3cc5480b2c6eb1e42640936ed0b083c557eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "GlobalConstruct.h"
#include <TypeConverter.h>
#include <types.h>

#include "../arch/x86/cpuinfo/Cpuinfo.h"

void main()
{
    GlobalConstruct::terminalInit();
    GlobalConstruct::gdtInit();
    Cpuinfo cpuinf;
};