diff options
| author | 2018-08-07 03:01:24 +0100 | |
|---|---|---|
| committer | 2018-08-06 22:01:24 -0400 | |
| commit | e2b74f635410891b4ab9c202ecdd83dfe05df239 (patch) | |
| tree | 90cf31b4b0f60d86709bfec1a3c021056bd0a269 /src/core/arm | |
| parent | Merge pull request #943 from lioncash/decl (diff) | |
| download | yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar.gz yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.tar.xz yuzu-e2b74f635410891b4ab9c202ecdd83dfe05df239.zip | |
GDBStub works with both Unicorn and Dynarmic now (#941)
* GDBStub works with both Unicorn and Dynarmic now
* Tidy up
Diffstat (limited to 'src/core/arm')
| -rw-r--r-- | src/core/arm/unicorn/arm_unicorn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.cpp b/src/core/arm/unicorn/arm_unicorn.cpp index 4c11f35a4..6bc349460 100644 --- a/src/core/arm/unicorn/arm_unicorn.cpp +++ b/src/core/arm/unicorn/arm_unicorn.cpp | |||
| @@ -203,7 +203,7 @@ void ARM_Unicorn::ExecuteInstructions(int num_instructions) { | |||
| 203 | } | 203 | } |
| 204 | Kernel::Thread* thread = Kernel::GetCurrentThread(); | 204 | Kernel::Thread* thread = Kernel::GetCurrentThread(); |
| 205 | SaveContext(thread->context); | 205 | SaveContext(thread->context); |
| 206 | if (last_bkpt_hit || (num_instructions == 1)) { | 206 | if (last_bkpt_hit || GDBStub::GetCpuStepFlag()) { |
| 207 | last_bkpt_hit = false; | 207 | last_bkpt_hit = false; |
| 208 | GDBStub::Break(); | 208 | GDBStub::Break(); |
| 209 | GDBStub::SendTrap(thread, 5); | 209 | GDBStub::SendTrap(thread, 5); |