1
#include "console.h"
2
#include "gdt.h"
3
4
void init(void)
5
{
6
install_gdt();
7
8
char hw[] = "Hello Samuel!";
9
kclear_screen();
10
kprintf(hw);
11
}