summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2018-09-20 23:25:56 +0200
committerGitHub <noreply@github.com>2018-09-20 23:25:56 +0200
commitf2372651879dd6682165487b34a70f33357e730a (patch)
tree6318d00be16d20b3724da79e64ae80e12ed7279c
parentMerge pull request #1362 from MerryMage/dynarmic (diff)
parentCorrect endianness of BKPT (diff)
downloadyuzu-f2372651879dd6682165487b34a70f33357e730a.tar
yuzu-f2372651879dd6682165487b34a70f33357e730a.tar.gz
yuzu-f2372651879dd6682165487b34a70f33357e730a.tar.bz2
yuzu-f2372651879dd6682165487b34a70f33357e730a.tar.lz
yuzu-f2372651879dd6682165487b34a70f33357e730a.tar.xz
yuzu-f2372651879dd6682165487b34a70f33357e730a.tar.zst
yuzu-f2372651879dd6682165487b34a70f33357e730a.zip
-rw-r--r--src/core/gdbstub/gdbstub.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp
index 1b04f68bf..0ecdd9f82 100644
--- a/src/core/gdbstub/gdbstub.cpp
+++ b/src/core/gdbstub/gdbstub.cpp
@@ -995,7 +995,7 @@ static bool CommitBreakpoint(BreakpointType type, VAddr addr, u64 len) {
breakpoint.addr = addr;
breakpoint.len = len;
Memory::ReadBlock(addr, breakpoint.inst.data(), breakpoint.inst.size());
- static constexpr std::array<u8, 4> btrap{{0xd4, 0x20, 0x7d, 0x0}};
+ static constexpr std::array<u8, 4> btrap{{0x00, 0x7d, 0x20, 0xd4}};
Memory::WriteBlock(addr, btrap.data(), btrap.size());
Core::System::GetInstance().InvalidateCpuInstructionCaches();
p.insert({addr, breakpoint});