Panda3DS/include/cpu.hpp
offtkp bbbc7fb1f2 KVM support
Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
Co-authored-by: hazelwiss <hazelwiss.rs@gmail.com>
2024-07-22 02:35:59 +03:00

9 lines
No EOL
154 B
C++

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