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