Added detection for the unsigned/signed short type
[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 public slots:
25 void RefreshContents(void);
26 void UseGPUPCAddress(void);
27
28 protected:
29
30 private:
31 QVBoxLayout * layout;
32 QLabel * text;
33 int32_t memBase;
34 };
35
36 #endif // __GPUDASMBROWSER_H__