mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
23 lines
351 B
C++
23 lines
351 B
C++
#pragma once
|
|
#include "Emu/CPU/CPUThread.h"
|
|
|
|
class PPCThread : public CPUThread
|
|
{
|
|
public:
|
|
virtual std::string GetThreadName() const
|
|
{
|
|
return fmt::format("%s[0x%08x]", GetFName(), PC);
|
|
}
|
|
|
|
protected:
|
|
PPCThread(CPUThreadType type);
|
|
|
|
public:
|
|
virtual ~PPCThread();
|
|
|
|
protected:
|
|
virtual void DoReset() override;
|
|
};
|
|
|
|
PPCThread* GetCurrentPPCThread();
|