mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
57 lines
1.5 KiB
Rust
57 lines
1.5 KiB
Rust
#![no_std]
|
|
#![no_main]
|
|
#![feature(custom_test_frameworks)]
|
|
#![test_runner(blog_os::test_runner)]
|
|
#![reexport_test_harness_main = "test_main"]
|
|
|
|
use blog_os::println;
|
|
use bootloader::{BootInfo, entry_point};
|
|
use core::panic::PanicInfo;
|
|
|
|
entry_point!(kernel_main);
|
|
|
|
fn kernel_main(boot_info: &'static BootInfo) -> ! {
|
|
use blog_os::memory::{self, BootInfoFrameAllocator};
|
|
use x86_64::{VirtAddr, structures::paging::Page};
|
|
|
|
println!("Hello World{}", "!");
|
|
blog_os::init();
|
|
|
|
let phys_mem_offset = VirtAddr::new(boot_info.physical_memory_offset);
|
|
let mut mapper = unsafe { memory::init(phys_mem_offset) };
|
|
let mut frame_allocator = unsafe { BootInfoFrameAllocator::init(&boot_info.memory_map) };
|
|
|
|
// map an unused page
|
|
let page = Page::containing_address(VirtAddr::new(0xdeadbeaf000));
|
|
memory::create_example_mapping(page, &mut mapper, &mut frame_allocator);
|
|
|
|
// write the string `New!` to the screen through the new mapping
|
|
let page_ptr: *mut u64 = page.start_address().as_mut_ptr();
|
|
unsafe { page_ptr.offset(400).write_volatile(0x_f021_f077_f065_f04e) };
|
|
|
|
#[cfg(test)]
|
|
test_main();
|
|
|
|
println!("It did not crash!");
|
|
blog_os::hlt_loop();
|
|
}
|
|
|
|
/// This function is called on panic.
|
|
#[cfg(not(test))]
|
|
#[panic_handler]
|
|
fn panic(info: &PanicInfo) -> ! {
|
|
println!("{}", info);
|
|
blog_os::hlt_loop();
|
|
}
|
|
|
|
#[cfg(test)]
|
|
#[panic_handler]
|
|
fn panic(info: &PanicInfo) -> ! {
|
|
blog_os::test_panic_handler(info)
|
|
}
|
|
|
|
#[test_case]
|
|
fn trivial_assertion() {
|
|
assert_eq!(1, 1);
|
|
}
|