-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdosbox_rstub.cpp
More file actions
33 lines (27 loc) · 793 Bytes
/
dosbox_rstub.cpp
File metadata and controls
33 lines (27 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#define REMOTE_DEBUGGER
#define RPC_CLIENT
char wanted_name[] = "Remote DOSBox debugger";
#define DEBUGGER_NAME "dosbox"
#define PROCESSOR_NAME "metapc"
#define TARGET_PROCESSOR PLFM_386
#define DEBUGGER_ID DEBUGGER_ID_X86_DOSBOX_EMULATOR
#define DEBUGGER_FLAGS DBG_FLAG_REMOTE | DBG_FLAG_USE_SREGS
#define DEBUGGER_RESMOD (DBG_RESMOD_STEP_INTO)
//#define HAVE_APPCALL
//////
#include "tcpip.h"
#include <ua.hpp>
#include <area.hpp>
#include <idd.hpp>
#include <loader.hpp>
#include <ida.hpp>
#include <idp.hpp>
#include <kernwin.hpp>
#include "rpc_client.h"
#include "rpc_debmod_dosbox.h"
rpc_debmod_dosbox_t g_dbgmod;
#include "common_stub_impl.cpp"
#define S_MAP_ADDRESS s_map_address
#include "pc_local_impl.cpp"
#include "dosbox_local_impl.cpp"
#include "common_local_impl.cpp"