Skip to content

Commit 4deca62

Browse files
committed
Update README
1 parent 0a6b1c3 commit 4deca62

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,16 @@ Simple cross-platform runtime / startup (like crt0).
88

99
## Primary goals
1010

11-
* Create a sane, platform-specific ABI environment
11+
* Create a sane, platform-specific runtime environment
1212
* Set the stack pointer
1313
* Clear the `.bss` and `.sbss` sections (uninitialized static data)
1414
* Minimal hardware initialization (e.g. configuring the FPU)
15-
* Re-exports `F32Ext` and `F64Ext` traits from [`libm`](https://crates.io/crates/libm) (for platforms with an FPU)
15+
* Panic handler
1616

1717
## Usage
1818

19-
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.
19+
The `panic` function must be imported with `pub use`, or you will get missing-symbol errors at link time.
2020

2121
```rust
2222
pub use rrt0::panic;
23-
use rrt0::{F32Ext, F64Ext};
2423
```

0 commit comments

Comments
 (0)