Show DRAM size in the emulator status
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / GPUDasmWin.h
1 //
2 // GPUdasmWin.h: Jaguar GPU disassembly window
3 //
4 // JPM = Jean-Paul Mari <djipi.mari@gmail.com>
5 //
6 // Who When What
7 // --- ---------- -------------------------------------------------------------
8 // JPM 02/01/2017 Created this file
9 //
10
11 #ifndef __GPUDASMBROWSER_H__
12 #define __GPUDASMBROWSER_H__
13
14 #include <QtWidgets>
15 #include <stdint.h>
16
17 class GPUDasmWindow: public QWidget
18 {
19 Q_OBJECT
20
21 public:
22 GPUDasmWindow(QWidget * parent = 0);
23
24
25 public slots:
26 // void DefineAllKeys(void);
27 void RefreshContents(void);
28 //void GoToAddress(void);
29 void UseGPUPCAddress(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 // __GPUDASMBROWSER_H__