2015-01-13 15:38:52 +08:00
|
|
|
#![feature(asm)]
|
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;
|
|
|
|
extern crate alloc;
|
2014-12-23 11:24:40 +08:00
|
|
|
extern crate fn_box;
|
|
|
|
|
|
|
|
pub use context::Context;
|
|
|
|
|
2014-12-24 14:28:21 +08:00
|
|
|
mod std { pub use core::fmt; }
|
|
|
|
|
2015-01-10 05:45:39 +08:00
|
|
|
#[macro_use]
|
2014-12-24 13:22:49 +08:00
|
|
|
mod macros;
|
|
|
|
|
2014-12-23 11:24:40 +08:00
|
|
|
mod context;
|
|
|
|
mod stack;
|
2014-12-24 13:12:39 +08:00
|
|
|
|
|
|
|
mod arch;
|
|
|
|
mod platform;
|