mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
456 B
C++
16 lines
456 B
C++
uint rom_mask; //rom_size - 1
|
|
uint ram_mask; //ram_size - 1
|
|
|
|
auto bus_read(uint24 addr, uint8 data = 0x00) -> uint8 override;
|
|
auto bus_write(uint24 addr, uint8 data) -> void override;
|
|
|
|
auto op_read(uint16 addr) -> uint8;
|
|
alwaysinline auto peekpipe() -> uint8;
|
|
alwaysinline auto pipe() -> uint8;
|
|
|
|
auto cache_flush() -> void;
|
|
auto cache_mmio_read(uint16 addr) -> uint8;
|
|
auto cache_mmio_write(uint16 addr, uint8 data) -> void;
|
|
|
|
auto memory_reset() -> void;
|