blob: 634a147e7633530ad2564d896cf8921b0c820536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "GDT/gdt.hpp"
//----- PiegOS kernel main -----
int main(){
//Create Gdt instance
Gdt gdt;
//Load Gdt into memory
gdt.loadGdt();
while(1);
return 0;
}
|