1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00
os-k/src/kaleid/kernel/init.c
Julian Barathieu 915490fa24 x
2018-12-24 18:13:58 +01:00

19 lines
783 B
C

//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Authors: spectral` //
// NeoX //
// //
// Desc: Kernel entry point //
//----------------------------------------------------------------------------//
#include "kernel/init.h"
#include "kernel/io/terminal.h"
void kstart(void)
{
kterm_init();
panic("Goodbye World :(");
}