50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/* Copyright (c) 2013-2015 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 GBA_INTERFACE_H
|
|
#define GBA_INTERFACE_H
|
|
|
|
#include <mgba-util/common.h>
|
|
|
|
CXX_GUARD_START
|
|
|
|
#include <mgba/core/interface.h>
|
|
|
|
enum GBASIOMode {
|
|
SIO_NORMAL_8 = 0,
|
|
SIO_NORMAL_32 = 1,
|
|
SIO_MULTI = 2,
|
|
SIO_UART = 3,
|
|
SIO_GPIO = 8,
|
|
SIO_JOYBUS = 12
|
|
};
|
|
|
|
struct GBA;
|
|
struct GBAAudio;
|
|
struct GBASIO;
|
|
struct GBAVideoRenderer;
|
|
|
|
extern const int GBA_LUX_LEVELS[10];
|
|
|
|
struct GBALuminanceSource {
|
|
void (*sample)(struct GBALuminanceSource*);
|
|
|
|
uint8_t (*readLuminance)(struct GBALuminanceSource*);
|
|
};
|
|
|
|
struct GBASIODriver {
|
|
struct GBASIO* p;
|
|
|
|
bool (*init)(struct GBASIODriver* driver);
|
|
void (*deinit)(struct GBASIODriver* driver);
|
|
bool (*load)(struct GBASIODriver* driver);
|
|
bool (*unload)(struct GBASIODriver* driver);
|
|
uint16_t (*writeRegister)(struct GBASIODriver* driver, uint32_t address, uint16_t value);
|
|
};
|
|
|
|
CXX_GUARD_END
|
|
|
|
#endif
|