forked from M-Labs/zynq-rs
14 lines
217 B
Rust
14 lines
217 B
Rust
#![no_std]
|
|
|
|
#![feature(naked_functions)]
|
|
#![feature(alloc_error_handler)]
|
|
#![feature(panic_info_message)]
|
|
|
|
pub extern crate alloc;
|
|
pub extern crate compiler_builtins;
|
|
|
|
pub mod boot;
|
|
mod abort;
|
|
mod panic;
|
|
pub mod ram;
|