summaryrefslogtreecommitdiff
path: root/src/kernel.c
blob: bca784968d9ca5ac32faf1351d95e26778a4e691 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <kernel.h>
#include <stdint.h>
#include <stddef.h>
#include <vga.h>
#include "lib/string.h"

void start_kernel()
{
	init_display(2);
	vprintl("Hello World!!!\n");
}