all repos — mgba @ eb2809829d52fa442611fd1594812c623dc4d4ca

mGBA Game Boy Advance Emulator

src/gba/gba-cli.h (view raw)

 1#ifndef GBA_CLI_H
 2#define GBA_CLI_H
 3
 4#include "debugger/cli-debugger.h"
 5
 6struct GBAThread;
 7
 8struct GBACLIDebugger {
 9	struct CLIDebuggerSystem d;
10
11	struct GBAThread* context;
12};
13
14struct GBACLIDebugger* GBACLIDebuggerCreate(struct GBAThread*);
15
16#endif