You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
311 B
19 lines
311 B
#![no_std]
|
|
#![feature(alloc)]
|
|
#![feature(universal_impl_trait, conservative_impl_trait)]
|
|
#![feature(match_default_bindings)]
|
|
|
|
extern crate alloc;
|
|
|
|
// To use `println!` in test
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate std;
|
|
|
|
pub mod paging;
|
|
pub mod cow;
|
|
pub mod swap;
|
|
pub mod memory_set;
|
|
mod addr;
|
|
|
|
pub use addr::*; |