Files
xous-kernel/src/lib.rs
2019-12-24 09:33:02 +08:00

13 lines
236 B
Rust

#![no_std]
extern crate xous_riscv;
// use core::panic::PanicInfo;
// #[panic_handler]
// fn handle_panic(_arg: &PanicInfo) -> ! {
// loop {}
// }
// Allow consumers of this library to make syscalls
pub mod syscalls;