mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
284 B
C++
15 lines
284 B
C++
|
struct SuperDisc : Memory {
|
||
|
auto init() -> void;
|
||
|
auto load() -> void;
|
||
|
auto unload() -> void;
|
||
|
auto power() -> void;
|
||
|
auto reset() -> void;
|
||
|
|
||
|
auto read(uint24 addr, uint8 data) -> uint8;
|
||
|
auto write(uint24 addr, uint8 data) -> void;
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
extern SuperDisc superdisc;
|