mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
19 lines
783 B
C
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 :(");
|
|
}
|
|
|