Many small changes
This commit is contained in:
parent
ae6d4ecabd
commit
51af007cd5
|
@ -6,6 +6,7 @@ kernel\utils.c
|
|||
kernel\graphics.c
|
||||
kernel\print.c
|
||||
kernel\interrupts.c
|
||||
kernel\ports.c
|
||||
kernel\memory.c
|
||||
kernel\memory\memmove.c
|
||||
kernel\memory\memcmp.c
|
||||
|
|
|
@ -18,9 +18,7 @@
|
|||
and other functions that are uniquely
|
||||
related to the above tasks. */
|
||||
|
||||
#include <kernel/utils.h>
|
||||
#include <kernel/descriptor_tables.h>
|
||||
#include <kernel/serial.h>
|
||||
#include <kernel.h>
|
||||
|
||||
/*
|
||||
* The GDT gate setting function.
|
||||
|
|
|
@ -37,8 +37,6 @@ void SetupPrinting(EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE GPU) {
|
|||
Print_Info.cursorPos = 0;
|
||||
|
||||
Print_Info.scrollMode = 0;
|
||||
|
||||
ClearScreen(GPU);
|
||||
}
|
||||
|
||||
void WriteScaledFormatString(EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE GPU,
|
||||
|
|
|
@ -23,8 +23,6 @@ void gdb_end() {} /* GDB Debugging stump */
|
|||
static size_t time = 0;
|
||||
|
||||
int kernel_main(FILELOADER_PARAMS* FLOP) {
|
||||
init_serial();
|
||||
serial_printf("Kernel has been given control of the computer.\nStarting bootstrap init.\n");
|
||||
/* The kernel is started in 64-bit Long Mode by Syncboot. */
|
||||
|
||||
/* PrepareSystem just initializes all hardware features and gets the system ready to execute every function.
|
||||
|
|
Loading…
Reference in New Issue
Block a user