mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
18 lines
418 B
C++
18 lines
418 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
|
|
class CMipsExecutor
|
|
{
|
|
public:
|
|
virtual ~CMipsExecutor() = default;
|
|
virtual void Reset() = 0;
|
|
virtual int Execute(int) = 0;
|
|
virtual void ClearActiveBlocksInRange(uint32 start, uint32 end, bool executing) = 0;
|
|
|
|
#ifdef DEBUGGER_INCLUDED
|
|
virtual bool MustBreak() const = 0;
|
|
virtual void DisableBreakpointsOnce() = 0;
|
|
virtual bool FilterBreakpoint() = 0;
|
|
#endif
|
|
};
|