ableos_userland/programs/wasm_syscall_test/src/main.rs

14 lines
181 B
Rust
Raw Normal View History

#![no_std]
#![no_main]
2023-04-07 21:42:28 +00:00
use os_core::*;
2023-04-06 21:25:34 +00:00
#[no_mangle]
fn _start() {
2023-04-07 21:42:28 +00:00
unsafe { create_object("") }
}
#[panic_handler]
fn panic(info: &core::panic::PanicInfo) -> ! {
loop {}
}