PiegOS/kernel/main.cpp
2015-07-21 16:53:10 +04:00

31 lines
394 B
C++

#include "GDT/gdt.hpp"
#include "Drivers/memPrint/memPrint.hpp"
//----- PiegOS kernel main -----
int main(){
//Infinite loop
while(1);
//Exit code
return 0;
}
//----- PiegOS kernel boot -----
//Mangling the _boot function
extern "C" void _boot(){
//Create Gdt instance
Gdt gdt;
//Load Gdt into memory
gdt.loadGdt();
//Call main function
main();
}