summaryrefslogtreecommitdiffstats
path: root/arch/x86/gdt/GlobalObj.cpp
blob: 5832c11304284c4c21470a122cffdcc8d878771f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "GlobalObj.h"


uint64 MngGdt::gdt[MngGdt::size];

MngGdt mngGdt;

void mngGdtInit()
{
    if(!mngGdt.getIsGdtLoaded())
    {
        mngGdt = MngGdt();
    }
};