all repos — mgba @ 3261dd482cb7c2ac51de83e4c5813aa36907cb0c

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