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