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