mirror of https://github.com/bsnes-emu/bsnes.git
35 lines
765 B
C++
35 lines
765 B
C++
|
struct Cartridge {
|
||
|
auto pathID() const -> uint { return information.pathID; }
|
||
|
auto sha256() const -> string { return information.sha256; }
|
||
|
auto manifest() const -> string { return information.manifest; }
|
||
|
auto title() const -> string { return information.title; }
|
||
|
|
||
|
auto load() -> bool;
|
||
|
auto save() -> void;
|
||
|
auto unload() -> void;
|
||
|
|
||
|
auto power() -> void;
|
||
|
|
||
|
private:
|
||
|
struct Information {
|
||
|
uint pathID = 0;
|
||
|
string sha256;
|
||
|
string manifest;
|
||
|
string title;
|
||
|
} information;
|
||
|
|
||
|
struct Memory {
|
||
|
uint8* data = nullptr;
|
||
|
uint size = 0;
|
||
|
|
||
|
static auto mirror(uint addr, uint size) -> uint;
|
||
|
auto read(uint addr) -> uint8;
|
||
|
auto write(uint addr, uint8 data) -> void;
|
||
|
};
|
||
|
|
||
|
Memory rom;
|
||
|
Memory ram;
|
||
|
};
|
||
|
|
||
|
extern Cartridge cartridge;
|