fixed print list

This commit is contained in:
Jonathan Turner 2023-11-29 18:24:19 -05:00
parent e22cb17067
commit 935a8914f0

View File

@ -161,18 +161,16 @@ void print_holes(node* umem_head) {
}
u32 hole_ids = 0;
node *hole = NULL;
while(umem_head != NULL) {
if (umem_head->previous == NULL) {
if (umem_head->base_register-0x10000 != 0) {
hole = add_node( hole, 0x10000, umem_head->base_register-0x10000, true, ++hole_ids);
}
} else if (umem_head->next == NULL) {
node *previous = umem_head->previous;
hole = add_node( hole, previous->base_register+previous->limit_register, -1, true, ++hole_ids);
while(umem_head != NULL) {
if (umem_head->next != NULL) {
node *next = umem_head->next;
hole = add_node( hole, umem_head->base_register+umem_head->limit_register, next->base_register, true, ++hole_ids);
} else {
node *previous = umem_head->previous;
node *next = umem_head->next;
hole = add_node( hole, previous->base_register+previous->limit_register, next->base_register, true, ++hole_ids);
hole = add_node( hole, previous->base_register+previous->limit_register, -1, true, ++hole_ids);
}
umem_head = umem_head->next;
}