Skip to content
Snippets Groups Projects
Commit 76890672 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #2366 from MerryMage/MemoryReadCode

arm_dynarmic: Provide MemoryReadCode callback
parents aa47af7f f8cf87ce
No related branches found
No related tags found
No related merge requests found
Subproject commit 34e19f135c0dd2feac4f77660f51aa4ea28a7386
Subproject commit 36082087ded632079b16d24137fdd0c450ce82ea
......@@ -45,6 +45,7 @@ static Dynarmic::UserCallbacks GetUserCallbacks(ARMul_State* interpeter_state) {
user_callbacks.user_arg = static_cast<void*>(interpeter_state);
user_callbacks.CallSVC = &SVC::CallSVC;
user_callbacks.IsReadOnlyMemory = &IsReadOnlyMemory;
user_callbacks.MemoryReadCode = &Memory::Read32;
user_callbacks.MemoryRead8 = &Memory::Read8;
user_callbacks.MemoryRead16 = &Memory::Read16;
user_callbacks.MemoryRead32 = &Memory::Read32;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment