libmicroemu 0.2.0
ARM Microcontroller Emulator Library
Loading...
Searching...
No Matches
cpu_ops.h
1#pragma once
2
5#include "libmicroemu/logger.h"
6#include "libmicroemu/register_id.h"
8#include <array>
9#include <cstddef>
10#include <cstdint>
11#include <string_view>
12#include <type_traits>
13
14namespace libmicroemu::internal {
15
16template <typename TItOps, typename TPcOps, typename TExcOps, typename TExcTrig> class CpuOps {
17public:
18 using It = TItOps;
19 using Pc = TPcOps;
20 using Exc = TExcOps;
21 using ExcTrig = TExcTrig;
22};
23
24} // namespace libmicroemu::internal
Definition cpu_ops.h:16
The libmicroemu::internal namespace contains all classes and functions of libmicroemu which are priva...
Definition bkpt_flags.h:6
This file contains the declaration of the Predicates class.
Contains the Result class which is used to return the result of a function.
This file contains the declaration of the SpecialRegisterId enumeration and related functions.