bsnes/higan/gb/cartridge/mbc2/mbc2.hpp

13 lines
223 B
C++
Raw Normal View History

struct MBC2 : MMIO {
auto readIO(uint16 addr) -> uint8;
auto writeIO(uint16 addr, uint8 data) -> void;
auto power() -> void;
struct ROM {
uint8 select;
} rom;
struct RAM {
bool enable;
} ram;
} mbc2;