mirror of
https://github.com/libretro/Play-.git
synced 2024-11-28 03:00:49 +00:00
19 lines
366 B
C++
19 lines
366 B
C++
#pragma once
|
|
|
|
#include "RegViewPage.h"
|
|
#include "../MIPS.h"
|
|
#include "../VirtualMachine.h"
|
|
|
|
class CRegViewSCU : public CRegViewPage, public boost::signals2::trackable
|
|
{
|
|
public:
|
|
CRegViewSCU(HWND, const RECT&, CVirtualMachine&, CMIPS*);
|
|
virtual ~CRegViewSCU() = default;
|
|
|
|
private:
|
|
void Update() override;
|
|
std::string GetDisplayText();
|
|
|
|
CMIPS* m_ctx = nullptr;
|
|
};
|