all repos — mgba @ 0ba9d1e247209c37a04321d30867c7bbac3ba4bf

mGBA Game Boy Advance Emulator

src/gba/gba.h (view raw)

  1/* Copyright (c) 2013-2014 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 GBA_H
  7#define GBA_H
  8
  9#include "util/common.h"
 10
 11#include "arm.h"
 12#include "debugger/debugger.h"
 13
 14#include "gba-memory.h"
 15#include "gba-video.h"
 16#include "gba-audio.h"
 17#include "gba-sio.h"
 18
 19extern const uint32_t GBA_ARM7TDMI_FREQUENCY;
 20
 21enum GBAIRQ {
 22	IRQ_VBLANK = 0x0,
 23	IRQ_HBLANK = 0x1,
 24	IRQ_VCOUNTER = 0x2,
 25	IRQ_TIMER0 = 0x3,
 26	IRQ_TIMER1 = 0x4,
 27	IRQ_TIMER2 = 0x5,
 28	IRQ_TIMER3 = 0x6,
 29	IRQ_SIO = 0x7,
 30	IRQ_DMA0 = 0x8,
 31	IRQ_DMA1 = 0x9,
 32	IRQ_DMA2 = 0xA,
 33	IRQ_DMA3 = 0xB,
 34	IRQ_KEYPAD = 0xC,
 35	IRQ_GAMEPAK = 0xD
 36};
 37
 38enum GBALogLevel {
 39	GBA_LOG_FATAL = 0x01,
 40	GBA_LOG_ERROR = 0x02,
 41	GBA_LOG_WARN = 0x04,
 42	GBA_LOG_INFO = 0x08,
 43	GBA_LOG_DEBUG = 0x10,
 44	GBA_LOG_STUB = 0x20,
 45
 46	GBA_LOG_GAME_ERROR = 0x100,
 47	GBA_LOG_SWI = 0x200,
 48
 49	GBA_LOG_ALL = 0x33F,
 50
 51#ifdef NDEBUG
 52	GBA_LOG_DANGER = GBA_LOG_ERROR
 53#else
 54	GBA_LOG_DANGER = GBA_LOG_FATAL
 55#endif
 56};
 57
 58enum GBAKey {
 59	GBA_KEY_A = 0,
 60	GBA_KEY_B = 1,
 61	GBA_KEY_SELECT = 2,
 62	GBA_KEY_START = 3,
 63	GBA_KEY_RIGHT = 4,
 64	GBA_KEY_LEFT = 5,
 65	GBA_KEY_UP = 6,
 66	GBA_KEY_DOWN = 7,
 67	GBA_KEY_R = 8,
 68	GBA_KEY_L = 9,
 69	GBA_KEY_MAX,
 70	GBA_KEY_NONE = -1
 71};
 72
 73enum GBAComponent {
 74	GBA_COMPONENT_DEBUGGER,
 75	GBA_COMPONENT_MAX
 76};
 77
 78enum {
 79	SP_BASE_SYSTEM = 0x03007F00,
 80	SP_BASE_IRQ = 0x03007FA0,
 81	SP_BASE_SUPERVISOR = 0x03007FE0
 82};
 83
 84struct GBA;
 85struct GBARotationSource;
 86struct Patch;
 87struct VFile;
 88
 89struct GBATimer {
 90	uint16_t reload;
 91	uint16_t oldReload;
 92	int32_t lastEvent;
 93	int32_t nextEvent;
 94	int32_t overflowInterval;
 95	unsigned prescaleBits : 4;
 96	unsigned countUp : 1;
 97	unsigned doIrq : 1;
 98	unsigned enable : 1;
 99};
100
101struct GBA {
102	struct ARMComponent d;
103
104	struct ARMCore* cpu;
105	struct GBAMemory memory;
106	struct GBAVideo video;
107	struct GBAAudio audio;
108	struct GBASIO sio;
109
110	struct GBASync* sync;
111
112	struct ARMDebugger* debugger;
113
114	uint32_t bus;
115	bool performingDMA;
116
117	int timersEnabled;
118	struct GBATimer timers[4];
119
120	int springIRQ;
121	uint32_t biosChecksum;
122	int* keySource;
123	uint32_t busyLoop;
124	struct GBARotationSource* rotationSource;
125	struct GBALuminanceSource* luminanceSource;
126	struct GBARTCSource* rtcSource;
127	struct GBARumble* rumble;
128
129	struct GBARRContext* rr;
130	void* pristineRom;
131	size_t pristineRomSize;
132	uint32_t romCrc32;
133	struct VFile* romVf;
134	struct VFile* biosVf;
135
136	const char* activeFile;
137
138	int logLevel;
139};
140
141struct GBACartridge {
142	uint32_t entry;
143	uint8_t logo[156];
144	char title[12];
145	uint32_t id;
146	uint16_t maker;
147	uint8_t type;
148	uint8_t unit;
149	uint8_t device;
150	uint8_t reserved[7];
151	uint8_t version;
152	uint8_t checksum;
153	// And ROM data...
154};
155
156void GBACreate(struct GBA* gba);
157void GBADestroy(struct GBA* gba);
158
159void GBAReset(struct ARMCore* cpu);
160void GBASkipBIOS(struct ARMCore* cpu);
161
162void GBATimerUpdateRegister(struct GBA* gba, int timer);
163void GBATimerWriteTMCNT_LO(struct GBA* gba, int timer, uint16_t value);
164void GBATimerWriteTMCNT_HI(struct GBA* gba, int timer, uint16_t value);
165
166void GBAWriteIE(struct GBA* gba, uint16_t value);
167void GBAWriteIME(struct GBA* gba, uint16_t value);
168void GBARaiseIRQ(struct GBA* gba, enum GBAIRQ irq);
169void GBATestIRQ(struct ARMCore* cpu);
170void GBAHalt(struct GBA* gba);
171
172void GBAAttachDebugger(struct GBA* gba, struct ARMDebugger* debugger);
173void GBADetachDebugger(struct GBA* gba);
174
175void GBALoadROM(struct GBA* gba, struct VFile* vf, struct VFile* sav, const char* fname);
176void GBALoadBIOS(struct GBA* gba, struct VFile* vf);
177void GBAApplyPatch(struct GBA* gba, struct Patch* patch);
178
179bool GBAIsROM(struct VFile* vf);
180bool GBAIsBIOS(struct VFile* vf);
181void GBAGetGameCode(struct GBA* gba, char* out);
182void GBAGetGameTitle(struct GBA* gba, char* out);
183
184__attribute__((format (printf, 3, 4)))
185void GBALog(struct GBA* gba, enum GBALogLevel level, const char* format, ...);
186
187__attribute__((format (printf, 3, 4)))
188void GBADebuggerLogShim(struct ARMDebugger* debugger, enum DebuggerLogLevel level, const char* format, ...);
189
190#endif