all repos — mgba @ 6560db2ef58e1a192a2356fd8ae1de65379b838c

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 "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