ableos-wasm-test/src/main.rs

15 lines
169 B
Rust

#![no_std]
#![no_main]
use ableos_wasm_lib::*;
extern "C" fn console_out() {}
#[no_mangle]
extern "C" fn _start() -> i32 {
unsafe {
kill();
}
1
}