Make memmap less verbose
This commit is contained in:
parent
5a6d6afb94
commit
dddfe43874
BIN
qloader2.bin
BIN
qloader2.bin
Binary file not shown.
|
@ -167,9 +167,6 @@ void init_memmap(void) {
|
||||||
|
|
||||||
memmap_entries++;
|
memmap_entries++;
|
||||||
}
|
}
|
||||||
|
|
||||||
print("Memory map initialised. Current layout:\n");
|
|
||||||
print_memmap(memmap, memmap_entries);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void memmap_alloc_range(uint64_t base, uint64_t length) {
|
void memmap_alloc_range(uint64_t base, uint64_t length) {
|
||||||
|
@ -217,8 +214,6 @@ void memmap_alloc_range(uint64_t base, uint64_t length) {
|
||||||
target->base = base;
|
target->base = base;
|
||||||
target->length = length;
|
target->length = length;
|
||||||
|
|
||||||
print("Memory map changed. Current layout:\n");
|
|
||||||
print_memmap(memmap, memmap_entries);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue