all repos — mgba @ adcfc37db2c3b63367524a61f6a1f3d5577d6ca5

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