2019-12-18 07:06:10 +08:00
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
#![feature(alloc_error_handler)]
|
|
|
|
#![feature(panic_info_message)]
|
2021-01-28 10:58:17 +08:00
|
|
|
#![feature(naked_functions)]
|
|
|
|
#![feature(asm)]
|
2019-12-18 07:06:10 +08:00
|
|
|
|
|
|
|
pub extern crate alloc;
|
2020-01-26 08:45:02 +08:00
|
|
|
pub extern crate compiler_builtins;
|
2019-12-18 07:06:10 +08:00
|
|
|
|
|
|
|
pub mod boot;
|
2024-03-06 16:00:58 +08:00
|
|
|
pub mod abort;
|
2020-06-29 09:41:54 +08:00
|
|
|
#[cfg(feature = "panic_handler")]
|
2019-12-18 07:06:10 +08:00
|
|
|
mod panic;
|
|
|
|
pub mod ram;
|
2021-01-28 10:58:17 +08:00
|
|
|
|