Play-/Source/ui_qt/DebugSupport/RegViewSCU.h

17 lines
239 B
C
Raw Permalink Normal View History

2019-08-31 12:33:24 -04:00
#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;
};