From 45d9495e77dba212551ae9bc8e09b51e9ed6d324 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 23 Nov 2019 00:36:28 +0100 Subject: 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 --- src/kernel/acpi/acpi.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/kernel/acpi') diff --git a/src/kernel/acpi/acpi.c b/src/kernel/acpi/acpi.c index 893b28e..efa6fcf 100644 --- a/src/kernel/acpi/acpi.c +++ b/src/kernel/acpi/acpi.c @@ -157,8 +157,8 @@ int acpi_install() { } if (memcmp((unsigned int *) *ptr, "HPET", 4) == 0) { hpet = (struct HPET *) *ptr; - serial_write(hpet->signature); - serial_write_hex((int) hpet->base_address); + // serial_write(hpet->signature); + // serial_write_hex((int) hpet->base_address); } ptr++; } // Else: no valid FADT present @@ -194,7 +194,5 @@ void reboot() { while (good & 0x02) good = receive_b(0x64); send_b(0x64, 0xFE); - loop: - asm volatile ("hlt"); - goto loop; + halt_loop(); } -- cgit v1.2.3