bQUARKz a0601fe816
All checks were successful
Intrepid/Prometeu/Runtime/pipeline/head This commit looks good
shell running step should run only when task in foreground
2026-05-15 09:28:13 +01:00

20 lines
592 B
Rust

mod boot_target;
#[allow(clippy::module_inception)]
mod firmware;
pub mod firmware_state;
pub(crate) mod firmware_step_crash_screen;
pub(crate) mod firmware_step_game_running;
pub(crate) mod firmware_step_hub_home;
pub(crate) mod firmware_step_launch_hub;
pub(crate) mod firmware_step_load_cartridge;
pub(crate) mod firmware_step_reset;
pub(crate) mod firmware_step_shell_running;
pub(crate) mod firmware_step_splash_screen;
mod prometeu_context;
pub use boot_target::BootTarget;
pub use firmware::Firmware;
pub use firmware_state::FirmwareState;
pub use prometeu_context::PrometeuContext;