bern_arch/cortex_m/mod.rs
1//! ARM Cortex-M hardware support.
2
3pub mod core;
4mod interrupt;
5pub mod memory_protection;
6mod mpu;
7mod register;
8mod scheduler;
9pub mod startup;
10pub mod sync;
11pub mod syscall;
12mod tick;
13
14pub struct Arch;
15
16// re-exports
17pub use crate::cortex_m::core::ArchCore;
18pub use cortex_m_rt;