all repos — mgba @ c30807117f8e900ec610a4f38db84202b32cbd36

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 "debugger.h"
 5
 6#include <histedit.h>
 7
 8struct CLIDebugger {
 9	struct ARMDebugger d;
10
11	EditLine* elstate;
12	History* histate;
13};
14
15void CLIDebuggerCreate(struct CLIDebugger*);
16
17#endif