This repository has been archived on 2026-05-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
yuzu/src/citra_qt/debugger/ramview.hxx
T
Mathieu Vaillancourt e5f09b8be6 UI/debugger changes
2014-04-18 18:34:23 -04:00

13 lines
161 B
C++

#include "qhexedit.h"
class GRamView : public QHexEdit
{
Q_OBJECT
public:
GRamView(QWidget* parent = NULL);
public slots:
void OnCPUStepped();
};