mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-06 12:14:49 +12:00
Proper KVM/Dynarmic split
This commit is contained in:
parent
b5371dc66c
commit
2057e0c447
6 changed files with 154 additions and 105 deletions
include
9
include/cpu.hpp
Normal file
9
include/cpu.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue