First commit
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / DSPDasmWin.h
CommitLineData
cf76e892
JPM
1//
2// DSPDasmWin.h: Jaguar DSP disassembly window
3//
4// JPM = Jean-Paul Mari <djipi.mari@gmail.com>
5//
6// Who When What
7// --- ---------- -------------------------------------------------------------
8// JPM 02/02/2017 Created this file
9//
10
11#ifndef __DSPDASMBROWSER_H__
12#define __DSPDASMBROWSER_H__
13
14#include <QtWidgets>
15#include <stdint.h>
16
17class DSPDasmWindow: public QWidget
18{
19 Q_OBJECT
20
21 public:
22 DSPDasmWindow(QWidget * parent = 0);
23
24
25 public slots:
26// void DefineAllKeys(void);
27 void RefreshContents(void);
28 //void GoToAddress(void);
29 void UseDSPPCAddress(void);
30 //void SetAddress(int address);
31
32 protected:
33 //void keyPressEvent(QKeyEvent *);
34
35 private:
36 QVBoxLayout * layout;
37// QTextBrowser * text;
38 QLabel * text;
39 //QPushButton * refresh;
40 //QPushButton * go;
41 //QLineEdit * address;
42 //QRadioButton * gpu;
43 //QRadioButton * dsp;
44
45 int32_t memBase;
46};
47
48#endif // __DSPDASMBROWSER_H__