mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-20 08:17:58 -05:00
core/debugger: Improved stepping mechanism and misc fixes
This commit is contained in:
@ -16,10 +16,11 @@ class KThread;
|
||||
namespace Core {
|
||||
|
||||
enum class DebuggerAction {
|
||||
Interrupt, // Stop emulation as soon as possible.
|
||||
Continue, // Resume emulation.
|
||||
StepThread, // Step the currently-active thread.
|
||||
ShutdownEmulation, // Shut down the emulator.
|
||||
Interrupt, ///< Stop emulation as soon as possible.
|
||||
Continue, ///< Resume emulation.
|
||||
StepThreadLocked, ///< Step the currently-active thread without resuming others.
|
||||
StepThreadUnlocked, ///< Step the currently-active thread and resume others.
|
||||
ShutdownEmulation, ///< Shut down the emulator.
|
||||
};
|
||||
|
||||
class DebuggerBackend {
|
||||
|
Reference in New Issue
Block a user