summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/disasm.hxx
diff options
context:
space:
mode:
authorMathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-19 00:30:53 +0200
committerMathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-19 00:34:23 +0200
commite5f09b8be65c06927164428b5d400024e2388dbc (patch)
tree0f0fd4035bcc88c0de5a47a7d3c64b4f67453897 /src/citra_qt/disasm.hxx
parentMerge branch 'hle-interface' (diff)
downloadyuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.gz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.bz2
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.lz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.xz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.zst
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.zip
Diffstat (limited to 'src/citra_qt/disasm.hxx')
-rw-r--r--src/citra_qt/disasm.hxx42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/citra_qt/disasm.hxx b/src/citra_qt/disasm.hxx
deleted file mode 100644
index 0c5a37cac..000000000
--- a/src/citra_qt/disasm.hxx
+++ /dev/null
@@ -1,42 +0,0 @@
-#include <QDockWidget>
-#include "ui_disasm.h"
-
-#include "common/common.h"
-#include "common/break_points.h"
-
-class QAction;
-class QStandardItemModel;
-class EmuThread;
-
-class GDisAsmView : public QDockWidget
-{
- Q_OBJECT
-
-public:
- GDisAsmView(QWidget* parent, EmuThread& emu_thread);
-
- void Init();
-
-public slots:
- void OnSetBreakpoint();
- void OnContinue();
- void OnStep();
- void OnStepInto();
- void OnPause();
- void OnToggleStartStop();
-
- void OnCPUStepped();
-
-private:
- // returns -1 if no row is selected
- int SelectedRow();
-
- Ui::DockWidget disasm_ui;
- QStandardItemModel* model;
-
- u32 base_addr;
-
- BreakPoints* breakpoints;
-
- EmuThread& emu_thread;
-};