Panda3DS/include/cpu.hpp
2022-09-20 15:43:37 +03:00

9 lines
No EOL
169 B
C++

#pragma once
#ifdef CPU_DYNARMIC
#include "cpu_dynarmic.hpp"
#elif defined(CPU_KVM)
#error KVM CPU is not implemented yet
#else
#error No CPU core implemented :(
#endif