os-k/src/kaleid/kernel/init.c

25 lines
891 B
C
Raw Normal View History

//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Authors: spectral` //
// NeoX //
// //
// Desc: Kernel entry point //
//----------------------------------------------------------------------------//
#include "kernel/init.h"
2018-12-25 19:09:58 +01:00
#include "kernel/ke/panic.h"
#include "kernel/io/terminal.h"
2018-12-25 19:09:58 +01:00
//
// Entry point of kaleid-kernel.elf
//
2018-12-24 18:13:58 +01:00
void kstart(void)
2018-12-29 23:51:00 +01:00
{
DosSetKernState(KSTATE_INIT);
DosInitTerms();
DosPanic("Goodbye World :(");
}