diff options
author | Marvin Borner | 2019-11-23 00:36:28 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-23 00:36:28 +0100 |
commit | 45d9495e77dba212551ae9bc8e09b51e9ed6d324 (patch) | |
tree | 1e8ead9a55b41fa009c28823ca7a9ac0b1b5b2fe /src/kernel/acpi | |
parent | 4b178c0feb4c415be36be0e4c0def8c447ed42af (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/acpi')
-rw-r--r-- | src/kernel/acpi/acpi.c | 8 |
1 files changed, 3 insertions, 5 deletions
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(); } |