summaryrefslogtreecommitdiffstats
path: root/kernel/GlobalConstruct.cpp
blob: dc0a83ac851dd4f0a5752cf8da15056af0e7793f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "GlobalConstruct.h"

void GlobalConstruct::terminalInit()
{
    display = VGADisplay();
};

void GlobalConstruct::gdtInit()
{
    mngGdtInit();
    mngGdt.addDescriptor(DescSeg32::flatCodeKernel());
    mngGdt.addDescriptor(DescSeg32::flatDataKernel()); 
    mngGdt.loadGdt();
};