ableos_userland/programs/wasm_syscall_test/src/main.rs

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