diff options
Diffstat (limited to 'src/citra_qt/debugger/ramview.hxx')
| -rw-r--r-- | src/citra_qt/debugger/ramview.hxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/ramview.hxx b/src/citra_qt/debugger/ramview.hxx new file mode 100644 index 000000000..1db1546aa --- /dev/null +++ b/src/citra_qt/debugger/ramview.hxx | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #include "qhexedit.h" | ||
| 2 | |||
| 3 | class GRamView : public QHexEdit | ||
| 4 | { | ||
| 5 | Q_OBJECT | ||
| 6 | |||
| 7 | public: | ||
| 8 | GRamView(QWidget* parent = NULL); | ||
| 9 | |||
| 10 | public slots: | ||
| 11 | void OnCPUStepped(); | ||
| 12 | }; | ||