4#include "libmicroemu/types.h"
8enum class SvcFlags : u8 {
9 kRequestExit = 0x1U << 0U,
10 kRequestErrorExit = 0x1U << 1U,
11 kOmitException = 0x1U << 2U
14using SvcFlagsSet = uint8_t;
The libmicroemu::internal namespace contains all classes and functions of libmicroemu which are priva...
Definition bkpt_flags.h:6
Contains the Result class which is used to return the result of a function.