all repos — mgba @ 01d4672f560d734065b4ac2d412917cee47b85ae

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