libmicroemu 0.2.0
ARM Microcontroller Emulator Library
Loading...
Searching...
No Matches
bkpt_flags.h
1#pragma once
2
4#include "libmicroemu/types.h"
5
7
8enum 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
14using BkptFlagsSet = uint8_t;
15
16} // namespace libmicroemu::internal
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.