git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f9c7c4c5379d429186f4e5cff01e67dc468854e3
[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
}