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

Merge pull request #1345 from lioncash/write

arm_dynarmic: Correct ExclusiveWrite128()'s operation
parents fafc80d7 ead2a4ee
No related branches found
No related tags found
No related merge requests found
......@@ -304,8 +304,8 @@ bool DynarmicExclusiveMonitor::ExclusiveWrite64(std::size_t core_index, VAddr va
bool DynarmicExclusiveMonitor::ExclusiveWrite128(std::size_t core_index, VAddr vaddr, u128 value) {
return monitor.DoExclusiveOperation(core_index, vaddr, 16, [&] {
Memory::Write64(vaddr, value[0]);
Memory::Write64(vaddr, value[1]);
Memory::Write64(vaddr + 0, value[0]);
Memory::Write64(vaddr + 8, value[1]);
});
}
......
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