PMM: init (find biggest usable region)

This commit is contained in:
2025-12-31 12:02:41 +01:00
parent 8f5e2eae3e
commit 05a862e97a
7 changed files with 99 additions and 5 deletions

View File

@@ -111,6 +111,12 @@ void memmap_display(struct limine_memmap_response* response)
strcpy(type, "UNKNOWN");
break;
}
DEBUG("entry %u: [%016x | %u bytes] - %s", i, entry->base, entry->length, type);
DEBUG("entry %02u: [0x%016x | %016u bytes] - %s", i, entry->base, entry->length, type);
}
}
// Display the HHDM
void hhdm_display(struct limine_hhdm_response* hhdm)
{
DEBUG("Got HHDM revision=%u offset=0x%p", hhdm->revision, hhdm->offset);
}