Proper KVM/Dynarmic split

This commit is contained in:
wheremyfoodat 2022-09-15 06:06:46 +03:00
parent b5371dc66c
commit 2057e0c447
6 changed files with 154 additions and 105 deletions
include

9
include/cpu.hpp Normal file
View file

@ -0,0 +1,9 @@
#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