summaryrefslogtreecommitdiffstats
path: root/kernel/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kernel.c')
-rw-r--r--kernel/kernel.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c
index 59caf0a..3d9a3cc 100644
--- a/kernel/kernel.c
+++ b/kernel/kernel.c
@@ -1,13 +1,12 @@
#include "GlobalConstruct.h"
-#include "../arch/x86/io/GlobalObj.h"
-#include "../arch/x86/inc/TypeConverter.h"
+#include <TypeConverter.h>
+#include <types.h>
+
+#include "../arch/x86/cpuinfo/Cpuinfo.h"
void main()
{
GlobalConstruct::terminalInit();
GlobalConstruct::gdtInit();
-
- display << "Hello, World!";
-
+ Cpuinfo cpuinf;
};
-