mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
JIT: base
all instructions are interpreted
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
project(core)
|
||||
|
||||
set (CMAKE_CXX_STANDARD 14)
|
||||
|
||||
add_library(core STATIC
|
||||
ARCodeList.cpp
|
||||
AREngine.cpp
|
||||
@ -8,6 +10,7 @@ add_library(core STATIC
|
||||
ARMInterpreter_ALU.cpp
|
||||
ARMInterpreter_Branch.cpp
|
||||
ARMInterpreter_LoadStore.cpp
|
||||
ARM_InstrInfo.cpp
|
||||
Config.cpp
|
||||
CP15.cpp
|
||||
CRC32.cpp
|
||||
@ -27,6 +30,15 @@ add_library(core STATIC
|
||||
SPU.cpp
|
||||
Wifi.cpp
|
||||
WifiAP.cpp
|
||||
|
||||
ARMJIT.cpp
|
||||
ARMJIT_x64/ARMJIT_Compiler.cpp
|
||||
|
||||
dolphin/CommonFuncs.cpp
|
||||
dolphin/x64ABI.cpp
|
||||
dolphin/x64CPUDetect.cpp
|
||||
dolphin/x64Emitter.cpp
|
||||
dolphin/MemoryUtil.cpp
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
|
Reference in New Issue
Block a user