course 4 and some usefule addendum
[lunaix-os.git] / lunaix-os / kernel / kernel.c
1 #include <lunaix/tty/tty.h>
2
3 void _kernel_init() {
4     // TODO
5 }
6
7 void _kernel_main(void* info_table) {
8     // TODO
9     tty_set_theme(VGA_COLOR_GREEN, VGA_COLOR_BLACK);
10     tty_put_str("Hello kernel world!\nThis is second line.");
11 }