minimal_rt/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Minimal support runtime for `openhcl_boot` and other kernel-mode
5//! environments.
6
7#![no_std]
8// UNSAFETY: Interacting with low level hardware and bootloader primitives.
9#![expect(unsafe_code)]
10
11pub mod arch;
12pub mod enlightened_panic;
13pub mod reftime;
14pub mod reloc;
15pub mod rt;