rrt0

Crates.iorrt0
lib.rsrrt0
version0.3.1
sourcesrc
created_at2018-12-16 05:30:31.315963
updated_at2022-06-16 12:21:50.054258
descriptionSimple cross-platform runtime / startup (like crt0)
homepage
repositoryhttps://github.com/rust-console/rrt0
max_upload_size
id102113
size6,757
Jay Oster (parasyte)

documentation

README

rrt0

Simple cross-platform runtime / startup (like crt0).

Supported platforms

Primary goals

  • Create a sane, platform-specific runtime environment
    • Set the stack pointer
    • Clear the .bss and .sbss sections (uninitialized static data)
    • Minimal hardware initialization (e.g. configuring the FPU)
    • Panic handler

Usage

The panic function must be imported with pub use, or you will get missing-symbol errors at link time.

pub use rrt0::panic;
Commit count: 26

cargo fmt