novusk_syscalls 0.2.1

A library for implementing syscalls for Novusk
Documentation
1
2
3
4
5
6
7
// It's very unlikely that any architecture will have more than a hundred syscall nums
pub const SYS_EMPTY: u32 = 999;

#[no_mangle]
pub unsafe extern "C" fn sys_empty(sys_arg1: u8, sys_arg2: u8, sys_arg3: u8) -> u8 {
    12
}