libmicroemu
0.2.0
ARM Microcontroller Emulator Library
Loading...
Searching...
No Matches
src
libmicroemu
internal
bkpt_flags.h
1
#pragma once
2
3
#include "
libmicroemu/internal/result.h
"
4
#include "libmicroemu/types.h"
5
6
namespace
libmicroemu::internal
{
7
8
enum class
BkptFlags : u8 {
9
kRequestExit = 0x1U << 0U,
// Application exits via exit keyword
10
kRequestErrorExit = 0x1U << 1U,
// Application exit was by unusual way.
11
kOmitException = 0x1U << 2U
// Omit Exception ..bkpt does not execute Exception
12
};
13
14
using
BkptFlagsSet = uint8_t;
15
16
}
// namespace libmicroemu::internal
libmicroemu::internal
The libmicroemu::internal namespace contains all classes and functions of libmicroemu which are priva...
Definition
bkpt_flags.h:6
result.h
Contains the Result class which is used to return the result of a function.
Generated by
1.13.2