//! Common types and functions used by Hadris
extern crate alloc;
extern crate std;
/// Algorithms (requires std for CRC and random)
/// Strings (requires alloc for String/Vec)
/// Types
/// A generic boot sector that informs the user they are loading the image incorrectly.
///
/// This is generated using the code in the `boot_sector` directory. See the README for more information.
/// Currently this is required to be maually compiled, and tested.
/// TODO: Make this a build script that generates the binary, and verify with a static analysis tool.
pub static BOOT_SECTOR_BIN: & = include_bytes!;