mirror of
https://github.com/Vita3K/Vita3K-Android.git
synced 2024-11-27 15:30:43 +00:00
dynarmic: Use arm7 architecture
This commit is contained in:
parent
78d4078977
commit
ecf91b429a
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -86,7 +86,7 @@
|
||||
url = https://github.com/Cyan4973/xxHash
|
||||
[submodule "external/dynarmic"]
|
||||
path = external/dynarmic
|
||||
url=https://github.com/Vita3K/dynarmic.git
|
||||
url = https://github.com/Vita3K/dynarmic.git
|
||||
[submodule "external/fmt"]
|
||||
path = external/fmt
|
||||
url = https://github.com/fmtlib/fmt.git
|
||||
|
1
external/CMakeLists.txt
vendored
1
external/CMakeLists.txt
vendored
@ -155,7 +155,6 @@ endif()
|
||||
|
||||
set(DYNARMIC_TESTS OFF CACHE BOOL "")
|
||||
set(DYNARMIC_NO_BUNDLED_FMT ON CACHE BOOL "")
|
||||
set(DYNARMIC_USE_ARMV7 ON CACHE BOOL "")
|
||||
add_subdirectory(dynarmic)
|
||||
|
||||
add_library(vita-toolchain INTERFACE)
|
||||
|
@ -160,6 +160,7 @@ public:
|
||||
|
||||
std::unique_ptr<Dynarmic::A32::Jit> make_jit(std::unique_ptr<ArmDynarmicCallback> &callback, MemState *mem) {
|
||||
Dynarmic::A32::UserConfig config;
|
||||
config.arch_version = Dynarmic::A32::ArchVersion::v7;
|
||||
config.callbacks = callback.get();
|
||||
config.fastmem_pointer = mem->memory.get();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user