aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/kernel.c
diff options
context:
space:
mode:
authorMarvin Borner2019-11-23 00:36:28 +0100
committerMarvin Borner2019-11-23 00:36:28 +0100
commit45d9495e77dba212551ae9bc8e09b51e9ed6d324 (patch)
tree1e8ead9a55b41fa009c28823ca7a9ac0b1b5b2fe /src/kernel/kernel.c
parent4b178c0feb4c415be36be0e4c0def8c447ed42af (diff)
Tried implementing memory based paging...
Also did many other fixes/improvements. While I think I did most things correct, the ACPI doesn't work anymore (triple fault) and the resolution detection fails with 0x2... :c
Diffstat (limited to 'src/kernel/kernel.c')
-rw-r--r--src/kernel/kernel.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index eb75d32..94d1c20 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -16,12 +16,11 @@ extern void switch_to_user();
void kernel_main() {
vga_log("Installing basic features of Melvix...", 0);
// Install features
- // memory_init();
- timer_install();
+ memory_init();
gdt_install();
init_serial();
paging_install();
- acpi_install();
+ // acpi_install();
idt_install();
isrs_install();
irq_install();
@@ -31,6 +30,7 @@ void kernel_main() {
asm volatile ("cli");
mouse_install();
keyboard_install();
+ timer_install();
asm volatile ("sti");
// Get hardware information
@@ -62,7 +62,5 @@ void kernel_main() {
*/
// asm volatile ("div %0" :: "r"(0)); // Exception testing x/0
- loop:
- asm volatile ("hlt");
- goto loop;
+ halt_loop();
}