Skip to content
Snippets Groups Projects
Verified Commit 1baeb5a8 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Format memory entries using hex

parent 8211e92c
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ pub unsafe fn init(kernel_start: usize, kernel_end: usize) {
for (i, entry) in MEMORY_MAP.iter_mut().enumerate() {
*entry = *(0x500 as *const MemoryArea).add(i);
if entry._type != MEMORY_AREA_NULL {
info!("{:?}", entry);
info!("{:X?}", entry);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment