#![cfg_attr(target_os = "none", no_std)]
#![allow(unused)]
pub mod core;
pub mod memory_protection;
pub mod scheduler;
pub mod startup;
pub mod sync;
pub mod syscall;
pub use crate::core::ICore;
pub use crate::memory_protection::IMemoryProtection;
pub use crate::scheduler::IScheduler;
pub use crate::startup::IStartup;
pub use crate::sync::ISync;
pub use crate::syscall::ISyscall;
#[cfg(not(target_os = "none"))]
pub mod mock;
#[cfg(not(target_os = "none"))]
pub use crate::mock as arch;
#[cfg(all(arm_cortex_m, target_os = "none"))]
pub mod cortex_m;
#[cfg(all(arm_cortex_m, target_os = "none"))]
pub use crate::cortex_m as arch;