rrt0
Simple cross-platform runtime / startup (like crt0).
.bss
and .sbss
sections (uninitialized static data)F32Ext
and F64Ext
traits from libm
(for platforms with an FPU)The panic
function must be imported with pub use
, or you will get missing-symbol errors at link time. The floating point trait extensions can also be used for convenience.
rust
pub use rrt0::panic;
use rrt0::{F32Ext, F64Ext};