mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
10 lines
262 B
C++
Executable file
10 lines
262 B
C++
Executable file
struct MBC1 : MMIO {
|
|
bool ram_enable; //$0000-1fff
|
|
uint8 rom_select; //$2000-3fff
|
|
uint8 ram_select; //$4000-5fff
|
|
bool mode_select; //$6000-7fff
|
|
|
|
uint8 mmio_read(uint16 addr);
|
|
void mmio_write(uint16 addr, uint8 data);
|
|
void power();
|
|
} mbc1;
|