2015-02-03 03:17:23 +08:00
|
|
|
#![feature(asm, core)]
|
|
|
|
#![feature(os, libc)]
|
2014-12-24 14:28:21 +08:00
|
|
|
#![no_std]
|
|
|
|
|
2015-01-10 05:45:39 +08:00
|
|
|
#[macro_use]
|
2014-12-24 14:28:21 +08:00
|
|
|
extern crate core;
|
2014-12-23 11:24:40 +08:00
|
|
|
|
2015-01-14 18:12:39 +08:00
|
|
|
#[cfg(test)]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate std;
|
|
|
|
|
2014-12-23 11:24:40 +08:00
|
|
|
pub use context::Context;
|
|
|
|
|
2015-01-14 18:12:39 +08:00
|
|
|
#[cfg(not(test))]
|
2015-01-14 15:31:17 +08:00
|
|
|
mod std { pub use core::*; }
|
2014-12-24 13:22:49 +08:00
|
|
|
|
2014-12-23 11:24:40 +08:00
|
|
|
mod context;
|
|
|
|
mod stack;
|
2014-12-24 13:12:39 +08:00
|
|
|
|
|
|
|
mod arch;
|
|
|
|
mod platform;
|