mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
DSP: Replace x64 JIT pointer with a pointer to an architecture-agnostic base
This adds a base class that is used to replace the concrete instance of the x64 JIT pointer within DSPCore. This fully removes the direct use (read: non-ifdefed) usage of x86-64-specifics within the main DSP code. Said base can also be used for creating JITs for other architectures, such as AArch64, etc.
This commit is contained in:
@ -25,7 +25,7 @@
|
||||
#include "Core/DSP/DSPHost.h"
|
||||
#include "Core/DSP/DSPTables.h"
|
||||
#include "Core/DSP/Interpreter/DSPInterpreter.h"
|
||||
#include "Core/DSP/Jit/x64/DSPEmitter.h"
|
||||
#include "Core/DSP/Jit/DSPEmitterBase.h"
|
||||
#include "Core/HW/DSPLLE/DSPLLEGlobals.h"
|
||||
#include "Core/HW/Memmap.h"
|
||||
#include "Core/Host.h"
|
||||
|
Reference in New Issue
Block a user