aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/kernel.c
blob: f6ec4dfd02e05ff6902840c83bd04380b6258e3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "graphics/vesa.h"
#include "graphics/graphics.h"
#include "gdt/gdt.h"
#include "interrupts/interrupts.h"
#include "input/input.h"
#include "timer/timer.h"
#include "paging/paging.h"
#include "paging/kheap.h"

void init() {
    timer_install();
    gdt_install();
    idt_install();
    isrs_install();
    irq_install();
    // terminal_initialize(); // TODO: Re[ace VGA functions with VESA
    init_kheap();
    page_init();
    keyboard_install();
    // mouse_install();
    asm volatile ("sti");
}

void kernel_main(void) {
    set_optimal_resolution();
    init();
    info("Melvix loaded successfully!");
    info("Loading VESA...");

    if (vesa_available) {
        info("Loaded VESA!");
    } else {
        warn("VESA loading failed!");
    }

    // __asm__  ("div %0" :: "r"(0)); // Exception testing x/0
    for (;;);
}