mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
17 lines
239 B
C
17 lines
239 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "RegViewPage.h"
|
||
|
#include "MIPS.h"
|
||
|
|
||
|
class CRegViewSCU : public CRegViewPage
|
||
|
{
|
||
|
public:
|
||
|
CRegViewSCU(QWidget*, CMIPS*);
|
||
|
virtual ~CRegViewSCU() = default;
|
||
|
|
||
|
private:
|
||
|
void Update() override;
|
||
|
|
||
|
CMIPS* m_ctx = nullptr;
|
||
|
};
|