Next Generation WASM Microkernel Operating System
at trap_handler 16 lines 577 B view raw
1// Copyright 2025 Jonas Kruckenberg 2// 3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or 4// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or 5// http://opensource.org/licenses/MIT>, at your option. This file may not be 6// copied, modified, or distributed except according to those terms. 7 8#![feature(new_range_api)] 9#![no_std] 10#![allow(clippy::doc_markdown, clippy::module_name_repetitions)] 11 12mod config; 13mod info; 14 15pub use config::LoaderConfig; 16pub use info::{BootInfo, MemoryRegion, MemoryRegionKind, MemoryRegions, TlsTemplate};