mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-26 17:51:33 +11:00
75 lines
1.6 KiB
C
75 lines
1.6 KiB
C
/* Copyright (c) 2013-2016 Jeffrey Pfau
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
#ifndef GB_INTERFACE_H
|
|
#define GB_INTERFACE_H
|
|
|
|
#include <mgba-util/common.h>
|
|
|
|
CXX_GUARD_START
|
|
|
|
#include <mgba/core/interface.h>
|
|
|
|
enum GBModel {
|
|
GB_MODEL_AUTODETECT = 0xFF,
|
|
GB_MODEL_DMG = 0x00,
|
|
GB_MODEL_SGB = 0x20,
|
|
GB_MODEL_MGB = 0x40,
|
|
GB_MODEL_SGB2 = 0x60,
|
|
GB_MODEL_CGB = 0x80,
|
|
GB_MODEL_AGB = 0xC0
|
|
};
|
|
|
|
enum GBMemoryBankControllerType {
|
|
GB_MBC_AUTODETECT = -1,
|
|
GB_MBC_NONE = 0,
|
|
GB_MBC1 = 1,
|
|
GB_MBC2 = 2,
|
|
GB_MBC3 = 3,
|
|
GB_MBC5 = 5,
|
|
GB_MBC6 = 6,
|
|
GB_MBC7 = 7,
|
|
GB_MMM01 = 0x10,
|
|
GB_HuC1 = 0x11,
|
|
GB_HuC3 = 0x12,
|
|
GB_POCKETCAM = 0x13,
|
|
GB_TAMA5 = 0x14,
|
|
GB_MBC3_RTC = 0x103,
|
|
GB_MBC5_RUMBLE = 0x105,
|
|
GB_UNL_WISDOM_TREE = 0x200,
|
|
GB_UNL_PKJD = 0x203,
|
|
GB_UNL_BBD = 0x220, // Also used as a mask for MBCs that need special read behavior
|
|
GB_UNL_HITEK = 0x221,
|
|
};
|
|
|
|
enum GBVideoLayer {
|
|
GB_LAYER_BACKGROUND = 0,
|
|
GB_LAYER_WINDOW,
|
|
GB_LAYER_OBJ
|
|
};
|
|
|
|
struct GBSIODriver {
|
|
struct GBSIO* p;
|
|
|
|
bool (*init)(struct GBSIODriver* driver);
|
|
void (*deinit)(struct GBSIODriver* driver);
|
|
void (*writeSB)(struct GBSIODriver* driver, uint8_t value);
|
|
uint8_t (*writeSC)(struct GBSIODriver* driver, uint8_t value);
|
|
};
|
|
|
|
struct VFile;
|
|
|
|
bool GBIsROM(struct VFile* vf);
|
|
bool GBIsBIOS(struct VFile* vf);
|
|
|
|
enum GBModel GBNameToModel(const char*);
|
|
const char* GBModelToName(enum GBModel);
|
|
|
|
int GBValidModels(const uint8_t* bank0);
|
|
|
|
CXX_GUARD_END
|
|
|
|
#endif
|