moros 0.12.0

MOROS: Obscure Rust Operating System
Documentation
1
2
3
4
5
6
7
8
9
use crate::api::syscall;

pub fn reboot() {
    syscall::stop(0xCAFE);
}

pub fn halt() {
    syscall::stop(0xDEAD);
}