Start Rust OS stuff.
This commit is contained in:
16
rust-os/bareos/src/main.rs
Normal file
16
rust-os/bareos/src/main.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
#![feature(panic_implementation)]
|
||||
#![no_std]
|
||||
#![no_main]
|
||||
|
||||
use core::panic::PanicInfo;
|
||||
|
||||
#[panic_implementation]
|
||||
#[no_mangle]
|
||||
pub fn panic(_info: &PanicInfo) -> ! {
|
||||
loop {}
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn _start() -> ! {
|
||||
loop {}
|
||||
}
|
||||
Reference in New Issue
Block a user