Loading...
Searching...
No Matches
13#include "DebugServer2/Types.h"
15#define CPUSTATE_H_INTERNAL
18#include "DebugServer2/Architecture/ARM/CPUState.h"
19#elif defined(ARCH_ARM64)
20#include "DebugServer2/Architecture/ARM/CPUState.h"
21#include "DebugServer2/Architecture/ARM64/CPUState.h"
22#elif defined(ARCH_X86)
23#include "DebugServer2/Architecture/X86/CPUState.h"
24#elif defined(ARCH_X86_64)
25#include "DebugServer2/Architecture/X86/CPUState.h"
26#include "DebugServer2/Architecture/X86_64/CPUState.h"
27#elif defined(ARCH_RISCV)
28#include "DebugServer2/Architecture/RISCV/CPUState.h"
30#error "Architecture not supported."
33#undef CPUSTATE_H_INTERNAL
36namespace Architecture {
39#elif defined(ARCH_ARM64)
41#elif defined(ARCH_X86)
43#elif defined(ARCH_X86_64)
44using X86_64::CPUState;
45#elif defined(ARCH_RISCV)
48#error "Architecture not supported."