forked from AbleOS/ableos_userland
14 lines
181 B
Rust
14 lines
181 B
Rust
#![no_std]
|
|
#![no_main]
|
|
use os_core::*;
|
|
|
|
#[no_mangle]
|
|
fn _start() {
|
|
unsafe { create_object("") }
|
|
}
|
|
|
|
#[panic_handler]
|
|
fn panic(info: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|