3DS: Fix GB build

This commit is contained in:
Jeffrey Pfau 2016-02-13 20:49:54 -08:00
parent c8342a88ff
commit e6e535e39a
1 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,11 @@ static void GBSetInterrupts(struct LR35902Core* cpu, bool enable);
static void GBIllegal(struct LR35902Core* cpu);
static void GBHitStub(struct LR35902Core* cpu);
#ifdef _3DS
extern uint32_t* romBuffer;
extern size_t romBufferSize;
#endif
void GBCreate(struct GB* gb) {
gb->d.id = GB_COMPONENT_MAGIC;
gb->d.init = GBInit;