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