This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // CARGO: | |
| // [dependencies] | |
| // cortex-m = "0.6.0" | |
| // cortex-m-rt = "0.6.10" | |
| // cortex-m-semihosting = "0.3.3" | |
| // panic-halt = "0.2.0" | |
| #![no_std] | |
| #![no_main] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! A parser for executable files. | |
| //! | |
| //! Does not use the standard library (entirely no_std) and also does not require | |
| //! the `alloc` crate (but can optionally be enabled to turn on some convenience methods.) | |
| // This library works fine without standard library support, but can provide some auto traits if | |
| // desired. | |
| #![cfg_attr(not(feature = "std"), no_std)] | |
| // The `alloc` crate is optional, and not required for basic functionality. |
OlderNewer