summaryrefslogtreecommitdiff
path: root/src/kernel.c
blob: 8a8bd617b10d24a9190a656bf6249dcda60dc201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdint.h>
#include <stddef.h>
#include <toxic/vga.h>
#include <toxic/string.h>
#include <toxic/kernel.h>
#include <toxic/idt.h>
#include <toxic/io.h>

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

	interrupts_init();

}