summaryrefslogtreecommitdiffstats
path: root/kernel/GlobalConstruct.h
blob: 2b0a6759f0bff3e37a9421295bb8bdcc623fffd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GLOBALCONSTRUCT_H
#define GLOBALCONSTRUCT_H

#include "../arch/x86/io/GlobalObj.h"
#include "../arch/x86/gdt/GlobalObj.h"

class GlobalConstruct
{
    public:
        static void terminalInit();
        static void gdtInit();
};

#endif