lsnes/snes/chip/superfx/bus/bus.hpp
2013-05-03 17:47:34 +03:00

11 lines
219 B
C++
Executable file

struct ROM : Memory {
unsigned size() const;
uint8 read(unsigned);
void write(unsigned, uint8);
} rom;
struct RAM : Memory {
unsigned size() const;
uint8 read(unsigned);
void write(unsigned, uint8);
} ram;