all repos — mgba @ c0d1ca089ce1a69f2d22f0515c754593fbbe544a

mGBA Game Boy Advance Emulator

src/debugger/cli-debugger.h (view raw)

 1#ifndef CLI_DEBUGGER_H
 2#define CLI_DEBUGGER_H
 3
 4#include "util/common.h"
 5
 6#include "debugger.h"
 7
 8#include <histedit.h>
 9
10struct CLIDebugger {
11	struct ARMDebugger d;
12
13	EditLine* elstate;
14	History* histate;
15};
16
17void CLIDebuggerCreate(struct CLIDebugger*);
18
19#endif