summaryrefslogtreecommitdiffstats
path: root/kernel/GlobalConstruct.h
diff options
context:
space:
mode:
authorAlexey Gavrilov <rebovas@yahoo.com>2023-11-04 10:09:44 +0700
committerAlexey Gavrilov <rebovas@yahoo.com>2023-11-04 10:09:44 +0700
commitc18781e37e6bfe153e7c0f2bc8b04df0aecf151d (patch)
tree42bb0e00e58ccf85aa3b93c20347d4939464066e /kernel/GlobalConstruct.h
parenta93807ad337dd982c49f898cd5205d2b028f365d (diff)
Support for GDT has been written + add makefile debug mode
Diffstat (limited to 'kernel/GlobalConstruct.h')
-rwxr-xr-xkernel/GlobalConstruct.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/kernel/GlobalConstruct.h b/kernel/GlobalConstruct.h
new file mode 100755
index 0000000..2b0a675
--- /dev/null
+++ b/kernel/GlobalConstruct.h
@@ -0,0 +1,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