blob: ed3014b123833dadf377100c0e9b480b8d60077a (
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
39
40
41
42
43
|
// MIT License, Copyright (c) 2021 Marvin Borner
#include <acpi.h>
#include <cfg.h>
#include <def.h>
#include <dev.h>
#include <ide.h>
#include <int.h>
#include <log.h>
#include <pci.h>
#include <pic.h>
#include <sel.h>
/**
* Entry
*/
u8 boot_disk = 0;
int start(u8 disk);
int start(u8 disk)
{
boot_disk = disk;
vga_clear();
serial_install();
pic_install();
idt_install();
// acpi_probe(); // TODO: Fix slow ACPI probing
pci_probe();
dev_print();
cfg_read();
sel_draw();
// Sleep and wait for interrupts
while (1)
__asm__ volatile("hlt");
return 0;
}
|