mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Print available memory areas using multiboot info
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
|
||||
extern crate rlibc;
|
||||
extern crate spin;
|
||||
extern crate multiboot2;
|
||||
|
||||
#[macro_use]
|
||||
mod vga_buffer;
|
||||
@@ -28,6 +29,13 @@ pub extern fn rust_main(multiboot_information_address: usize) {
|
||||
vga_buffer::clear_screen();
|
||||
println!("Hello World{}", "!");
|
||||
|
||||
let boot_info = unsafe{ multiboot2::load(multiboot_information_address) };
|
||||
|
||||
println!("memory areas:");
|
||||
for area in boot_info.memory_map_tag().unwrap().memory_areas() {
|
||||
println!(" start: 0x{:x}, length: 0x{:x}", area.base_addr, area.length);
|
||||
}
|
||||
|
||||
loop{}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user