blob: c2a015002ceb7925645812bfd7afa7d684953a44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdint.h>
#include <stddef.h>
#include <toxic/vga.h>
#include <toxic/string.h>
#include <toxic/kernel.h>
#include <toxic/idt.h>
void start_kernel()
{
init_display(2);
vprintl("Hello World!!!\n");
interrupts_init();
}
|