all repos — mgba @ 1541e6e0b060637cff5ff882fa24956f88dc3a35

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