7 lines
109 B
Rust
7 lines
109 B
Rust
#![no_std]
|
|
#![allow(unused_imports)]
|
|
mod arch;
|
|
pub mod registers;
|
|
pub mod syscall;
|
|
pub use arch::current::*;
|