git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b0ef73053d186b44b600d5f7551fa6f11670bee7
[lunaix-os.git]
/
lunaix-os
/
kernel
/
kernel.c
1
#include <lunaix/tty/tty.h>
2
#include <lunaix/arch/gdt.h>
3
4
void
5
_kernel_init()
6
{
7
// TODO
8
_init_gdt();
9
}
10
11
void
12
_kernel_main(void* info_table)
13
{
14
// remove the warning
15
(void)info_table;
16
// TODO
17
tty_set_theme(VGA_COLOR_GREEN, VGA_COLOR_BLACK);
18
tty_put_str("Hello kernel world!\nThis is second line.");
19
}