Browse Source
Merge pull request #1370 from Hedges/GDBClean
Correct endianness of BRK
pull/15/merge
Mat M
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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}); |
|
|
|
|