pub trait ISyscall {
    fn syscall(service: u8, arg0: usize, arg1: usize, arg2: usize) -> usize;
}
Expand description

System call.

Required Methods

A system call with a service ID and 3 arguments.

Implementors