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); }