all repos — mgba @ 97931784e7c893f1bdee787f771f4ab074ff9451

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