37 lines
966 B
C
37 lines
966 B
C
/************************
|
|
*** Team Kitty, 2019 ***
|
|
*** Sync ***
|
|
***********************/
|
|
|
|
/*
|
|
* Sync main..
|
|
*
|
|
* Going off the back of Syncboot, the UEFI bootloader which currently only supports x86_64,
|
|
* this kernel is to be rewritten. The kernel is started in Long Mode, with interrupts enabled.
|
|
*
|
|
* Therefore, most of the checks are no longer needed, as they are performed by Syncboot for us.
|
|
* So, this becomes an exercise in time saving.
|
|
*
|
|
*
|
|
*/
|
|
|
|
//#include <stdio.h>
|
|
#include <kernel.h>
|
|
|
|
void gdb_end() {} /* GDB Debugging stump */
|
|
|
|
int kernel_main(FILELOADER_PARAMS* FLOP) {
|
|
/* The kernel is started in 64-bit Long Mode by Syncboot. */
|
|
/* Here, we start by drawing a splash, then loading a GDT and IDT into the placeholder UEFI gives us. */
|
|
|
|
|
|
/* Not sure how well serial would work in UEFI. */
|
|
// TODO: look at this.
|
|
PrepareSystem(FLOP);
|
|
|
|
gdb_end(); /* The first important step. Waypoint it for gdb debugging. */
|
|
|
|
return 0;
|
|
}
|
|
|