all repos — mgba @ 51ad9d37e1cbba22d81d9bcddfe9ad8d7c6de1c2

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