libmicroemu 0.2.0
ARM Microcontroller Emulator Library
Loading...
Searching...
No Matches
step_flags.h
1#pragma once
2#include "libmicroemu/types.h"
3
4namespace libmicroemu::internal {
5using StepFlagsSet = u8;
6
7// TODAY: Ok is the absmce of any error
8enum class StepFlags : StepFlagsSet {
9 kStepOk = 1U << 0U,
10 kStepTerminationRequest = 1U << 1U,
11};
12
13} // namespace libmicroemu::internal
The libmicroemu::internal namespace contains all classes and functions of libmicroemu which are priva...
Definition bkpt_flags.h:6