semihosting 0.1.25

Semihosting for AArch64, Arm, RISC-V, LoongArch, MIPS32, MIPS64, and Xtensa.
Documentation
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Experimental APIs.
//!
//! Note: All APIs in this module are experimental and outside of the normal semver guarantees and
//! minor or patch versions of semihosting may make breaking changes to them at any time.

#[cfg(feature = "args")]
#[cfg_attr(docsrs, doc(cfg(feature = "args")))]
pub mod env;
#[cfg(feature = "panic-unwind")]
#[cfg_attr(docsrs, doc(cfg(feature = "panic-unwind")))]
pub mod panic;
#[cfg(feature = "random")]
#[cfg_attr(docsrs, doc(cfg(feature = "random")))]
pub mod random;
#[cfg(feature = "time")]
#[cfg_attr(docsrs, doc(cfg(feature = "time")))]
pub mod time;