TSOS/src/kernel/main.c

10 lines
236 B
C
Raw Normal View History

2022-11-16 20:24:23 +01:00
// Entry point of the TSOS kernel
#include "kernel/ktypes.h"
#include "kernel/drivers/vga/screen.h"
2022-11-16 15:37:01 +01:00
void kmain(void) {
2022-11-17 12:42:45 +01:00
// Newline so we skip the log
// messages from the bootloader
kprint("\nTSOS Kernel is starting up");
2022-11-16 15:37:01 +01:00
}