all repos — mgba @ e2bcd2e05ad4d8fa879a5b32f56c91e1f5e4c964

mGBA Game Boy Advance Emulator

src/gb/extra/cli.h (view raw)

 1/* Copyright (c) 2013-2016 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef GB_CLI_H
 7#define GB_CLI_H
 8
 9#include "debugger/cli-debugger.h"
10
11struct GBCLIDebugger {
12	struct CLIDebuggerSystem d;
13
14	struct mCore* core;
15
16	bool frameAdvance;
17	bool inVblank;
18};
19
20struct CLIDebuggerSystem* GBCLIDebuggerCreate(struct mCore*);
21
22#endif