minimal_rt/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Minimal support runtime for `openhcl_boot` and other kernel-mode
//! environments.

#![no_std]
// UNSAFETY: Interacting with low level hardware and bootloader primitives.
#![expect(unsafe_code)]

pub mod arch;
pub mod enlightened_panic;
pub mod reftime;
pub mod reloc;
pub mod rt;