This commit is contained in:
Jonathan Turner 2023-11-29 19:17:52 -05:00
parent 7fe78e46c2
commit 3a821876fa

View File

@ -172,6 +172,9 @@ void print_memory(node *umem_head, node *hole_head) {
kprint("Total Physical Memory: ");
kprint(c);
kprint("\n");
print_list(umem_head);
print_list(hole_head);
}
node* get_holes(node* umem_head) {