mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Debugger: Add a Thread widget
DebugInterface: Add GetThreads WatchWidget: Update widget on AddWatch
This commit is contained in:
@ -140,6 +140,11 @@ void DSPDebugInterface::ClearPatches()
|
||||
m_patches.ClearPatches();
|
||||
}
|
||||
|
||||
Common::Debug::Threads DSPDebugInterface::GetThreads() const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
std::string DSPDebugInterface::Disassemble(u32 address) const
|
||||
{
|
||||
// we'll treat addresses as line numbers.
|
||||
|
@ -53,6 +53,9 @@ public:
|
||||
bool HasEnabledPatch(u32 address) const override;
|
||||
void ClearPatches() override;
|
||||
|
||||
// Threads
|
||||
Common::Debug::Threads GetThreads() const override;
|
||||
|
||||
std::string Disassemble(u32 address) const override;
|
||||
std::string GetRawMemoryString(int memory, u32 address) const override;
|
||||
bool IsAlive() const override;
|
||||
|
Reference in New Issue
Block a user