forked from AbleOS/ableos
14 lines
175 B
Rust
14 lines
175 B
Rust
|
#![no_std]
|
||
|
#![no_main]
|
||
|
|
||
|
use core::panic::PanicInfo;
|
||
|
|
||
|
pub struct Command {}
|
||
|
|
||
|
fn _start(_command: Command) {}
|
||
|
|
||
|
#[panic_handler]
|
||
|
fn panic(_info: &PanicInfo) -> ! {
|
||
|
loop {}
|
||
|
}
|