core/debugger: Implement new GDB stub debugger
This commit is contained in:
parent
f6c47df671
commit
fb4b3c127f
27 changed files with 1500 additions and 42 deletions
|
@ -9,6 +9,7 @@
|
|||
#include "core/arm/arm_interface.h"
|
||||
#include "core/arm/symbols.h"
|
||||
#include "core/core.h"
|
||||
#include "core/debugger/debugger.h"
|
||||
#include "core/hle/kernel/k_process.h"
|
||||
#include "core/loader/loader.h"
|
||||
#include "core/memory.h"
|
||||
|
@ -88,4 +89,8 @@ void ARM_Interface::LogBacktrace() const {
|
|||
}
|
||||
}
|
||||
|
||||
bool ARM_Interface::ShouldStep() const {
|
||||
return system.DebuggerEnabled() && system.GetDebugger().IsStepping();
|
||||
}
|
||||
|
||||
} // namespace Core
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue