diff options
author | Marvin Borner | 2020-02-22 17:22:17 +0100 |
---|---|---|
committer | Marvin Borner | 2020-02-22 17:22:17 +0100 |
commit | add6efeb22ffb7695d5c9addcef073fc653f700e (patch) | |
tree | 147c99f2f3e037c877a34468f1494c412ec53416 /src/kernel/acpi/acpi.c | |
parent | 86ef6a779a42cf5701632ccb82714a006bae4ee9 (diff) |
Well basically nothing really works I guess
I've worked quite a while on several small things which I didn't commit but I'm going away for a week (holiday) soooo I synced these useless and dumb files :)
Diffstat (limited to 'src/kernel/acpi/acpi.c')
-rw-r--r-- | src/kernel/acpi/acpi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/acpi/acpi.c b/src/kernel/acpi/acpi.c index 60ed4f9..0122450 100644 --- a/src/kernel/acpi/acpi.c +++ b/src/kernel/acpi/acpi.c @@ -162,7 +162,10 @@ int acpi_install() } if (memcmp((unsigned int *) *ptr, "HPET", 4) == 0) { hpet = (struct HPET *) *ptr; - // serial_printf("%d", hpet->base_address); + serial_printf("%c%c%c%c", hpet->signature[0], hpet->signature[1], hpet->signature[2], + hpet->signature[3]); + serial_printf("%d", hpet->legacy_replacement); + serial_printf("%d", hpet->address.address); } ptr++; } // Else: no valid FADT present |