mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-10 08:29:29 +01:00
15 lines
304 B
C
15 lines
304 B
C
#pragma once
|
|
|
|
/// @brief The Pico Loader boot mode.
|
|
enum class BootMode
|
|
{
|
|
/// @brief Boot a retail or homebrew rom.
|
|
Normal,
|
|
|
|
/// @brief Reboot a retail rom that used OS_ResetSystem.
|
|
SdkResetSystem,
|
|
|
|
/// @brief Boot a multiboot rom that is already loaded into memory.
|
|
Multiboot
|
|
};
|