mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
41 lines
995 B
Rust
41 lines
995 B
Rust
#![no_std] // don't link the Rust standard library
|
|
#![cfg_attr(not(test), no_main)] // disable all Rust-level entry points
|
|
#![cfg_attr(test, allow(dead_code, unused_macros, unused_imports))]
|
|
|
|
#[macro_use]
|
|
extern crate blog_os;
|
|
extern crate x86_64;
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
|
|
use core::panic::PanicInfo;
|
|
|
|
/// This function is the entry point, since the linker looks for a function
|
|
/// named `_start` by default.
|
|
#[cfg(not(test))]
|
|
#[no_mangle] // don't mangle the name of this function
|
|
pub extern "C" fn _start() -> ! {
|
|
println!("Hello World{}", "!");
|
|
|
|
blog_os::gdt::init();
|
|
blog_os::interrupts::init_idt();
|
|
|
|
fn stack_overflow() {
|
|
stack_overflow(); // for each recursion, the return address is pushed
|
|
}
|
|
|
|
// trigger a stack overflow
|
|
stack_overflow();
|
|
|
|
println!("It did not crash!");
|
|
loop {}
|
|
}
|
|
|
|
/// This function is called on panic.
|
|
#[cfg(not(test))]
|
|
#[panic_handler]
|
|
fn panic(info: &PanicInfo) -> ! {
|
|
println!("{}", info);
|
|
loop {}
|
|
}
|