roxy_loader_api/lib.rs
1#![no_std]
2#![deny(missing_docs)]
3
4//! Kernel-facing types and macros for use with `roxy-loader`.
5//!
6//! If you want to use `roxy-loader`, see the [Github README](https://github.com/RoxyOS/roxy-loader).
7//! These docs are not intended to be guides.
8
9/// Boot-time information provided to the kernel.
10pub mod bootinfo;
11/// Framebuffer types provided to the kernel.
12pub mod framebuffer;
13/// Macros for defining the kernel entry point.
14pub mod kernel_entry;