OSDN Git Service

[VM][FMTOWNS][MEMORY] Fix setup around memory banks by I/O 0404h and 0480h.
[csp-qt/common_source_project-fm7.git] / source / src / qt / debugger / qt_debugger.cpp
1 /*
2         Skelton for retropc emulator
3
4         Author : K.Ohta <whatisthis.sowhat _at_ gmail.com>
5         Date   : 2015.04.09 -
6         History: 09 Apr, 2015 : Initial from Takeda.Toshiya's w32_debugger.cpp.
7         [ debugger console ]
8 */
9
10 #include <stdio.h>
11 #include <string.h>
12
13 #include <fcntl.h>
14 #include <QObject>
15 #include <QMetaObject>
16 #include <QApplication>
17 #include "../../emu_template.h"
18 #include "qt_debugger.h"
19 #include "../gui/qt_lineeditplus.h"
20
21
22 void CSP_Debugger::doExit(void)
23 {
24         emit sig_finished();
25 }
26
27 void CSP_Debugger::doExit2(void)
28 {
29         emit sig_finished();
30 }
31
32
33 CSP_Debugger::CSP_Debugger(EMU_TEMPLATE* p_emu, QWidget *parent) : CSP_Debugger_Tmpl(p_emu, parent)
34 {
35         
36 }
37
38 CSP_Debugger::~CSP_Debugger()
39 {
40 }
41
42