ableos/aos_wasm_stress_test/src/main.rs

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 {}
}