diff options
| author | Hedges <hedges@resync.pl> | 2018-08-07 03:01:24 +0100 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-08-06 22:01:24 -0400 |
| commit | e2b74f635410891b4ab9c202ecdd83dfe05df239 (patch) | |
| tree | 90cf31b4b0f60d86709bfec1a3c021056bd0a269 /src/core/arm | |
| parent | e218d79cc2d60468b42a56c4d76b4339ac8efd90 (diff) | |
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) { } Kernel::Thread* thread = Kernel::GetCurrentThread(); SaveContext(thread->context); - if (last_bkpt_hit || (num_instructions == 1)) { + if (last_bkpt_hit || GDBStub::GetCpuStepFlag()) { last_bkpt_hit = false; GDBStub::Break(); GDBStub::SendTrap(thread, 5); |
