mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
34 lines
652 B
C++
34 lines
652 B
C++
struct SuperFXBus : Bus {
|
|
void init();
|
|
};
|
|
|
|
struct SuperFXGSUROM : Memory {
|
|
unsigned size() const;
|
|
uint8 read(unsigned);
|
|
void write(unsigned, uint8);
|
|
};
|
|
|
|
struct SuperFXGSURAM : Memory {
|
|
unsigned size() const;
|
|
uint8 read(unsigned);
|
|
void write(unsigned, uint8);
|
|
};
|
|
|
|
struct SuperFXCPUROM : Memory {
|
|
unsigned size() const;
|
|
uint8 read(unsigned);
|
|
void write(unsigned, uint8);
|
|
};
|
|
|
|
struct SuperFXCPURAM : Memory {
|
|
unsigned size() const;
|
|
uint8 read(unsigned);
|
|
void write(unsigned, uint8);
|
|
};
|
|
|
|
namespace memory {
|
|
extern SuperFXGSUROM gsurom;
|
|
extern SuperFXGSURAM gsuram;
|
|
extern SuperFXCPUROM fxrom;
|
|
extern SuperFXCPURAM fxram;
|
|
}
|