roxy-loader-api 0.1.1-alpha.1

Kernel-facing API types and macros for roxy-loader.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]
#![deny(missing_docs)]

//! Kernel-facing types and macros for use with `roxy-loader`.
//!
//! If you want to use `roxy-loader`, see the [Github README](https://github.com/RoxyOS/roxy-loader).
//! These docs are not intended to be guides.

/// Boot-time information provided to the kernel.
pub mod bootinfo;
/// Framebuffer types provided to the kernel.
pub mod framebuffer;
/// Macros for defining the kernel entry point.
pub mod kernel_entry;