Debugger sources code clean-up
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / m68kDasmWin.h
1 //
2 // m68kDasmWin.h: M68K disassembly window
3 //
4 // JPM = Jean-Paul Mari <djipi.mari@gmail.com>
5 //
6 // Who When What
7 // --- ---------- -------------------------------------------------------------
8 // JPM 06/27/2016 Created this file
9 //
10
11 #ifndef __M68KDASMWIN_H__
12 #define __M68KDASMWIN_H__
13
14 #include <QtWidgets>
15 #include <stdint.h>
16
17 class m68KDasmWindow: public QWidget
18 {
19 Q_OBJECT
20
21 public:
22 m68KDasmWindow(QWidget * parent = 0);
23
24 public slots:
25 void RefreshContents(void);
26 void SetAddress(int address);
27 void Use68KPCAddress(void);
28
29 protected:
30
31 private:
32 QVBoxLayout *layout;
33 QTextBrowser *text;
34 size_t memBase;
35 };
36
37 #endif // __M68KDASMWIN_H__