mirror of https://github.com/bsnes-emu/bsnes.git
27 lines
484 B
C++
27 lines
484 B
C++
struct OBC1 {
|
|
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;
|
|
|
|
auto serialize(serializer&) -> void;
|
|
|
|
MappedRAM ram;
|
|
|
|
private:
|
|
auto ramRead(uint addr) -> uint8;
|
|
auto ramWrite(uint addr, uint8 data) -> void;
|
|
|
|
struct {
|
|
uint16 address;
|
|
uint16 baseptr;
|
|
uint16 shift;
|
|
} status;
|
|
};
|
|
|
|
extern OBC1 obc1;
|