Edit entry point

This commit is contained in:
manzerbredes 2015-07-21 16:53:10 +04:00
parent 9d07b13fcf
commit dd6a7fb6fa
6 changed files with 26 additions and 11 deletions

View file

@ -19,5 +19,5 @@ kernel/kernel.bin:
clean:
cd kernel && make clean
rm $(EXEC)
-rm $(EXEC)
#-----------------

View file

@ -13,5 +13,5 @@ $(EXEC): gdt.cpp
.PHONY:clean
clean:
rm *.o
-rm *.o
#----------------

View file

@ -13,5 +13,5 @@ $(EXEC): memory.cpp
.PHONY:clean
clean:
rm *.o
-rm *.o
#----------------

View file

@ -34,6 +34,6 @@ Helpers/helpers.o:
clean:
cd ./GDT/ && make clean
rm ./*.o
rm ./$(EXEC)
-rm ./*.o
-rm ./$(EXEC)
#-----------------

View file

@ -1,7 +1,7 @@
[BITS 32]
;Define extern symbol
extern main
extern _boot
;Define entry point as global for linking
global _kernelEntry
@ -20,5 +20,5 @@ dd 0x1BADB002
begin:
call main ;Start kernel
call _boot ;Start kernel

View file

@ -1,16 +1,31 @@
#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();
while(1);
return 0;
//Call main function
main();
}