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.

17 lines
280 B

#![cfg_attr(not(test), no_std)]
#![feature(alloc)]
#![feature(nll)]
#![feature(extern_crate_item_prelude)]
// import macros from log
use log::*;
extern crate alloc;
pub mod paging;
pub mod cow;
pub mod swap;
pub mod memory_set;
mod addr;
6 years ago
pub mod no_mmu;
pub use crate::addr::*;